aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/Animations/Cov/index.tsx
blob: c14c64ab919b29530a167d80bf374c690f782883 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import * as React from 'react';

import Animation from '../index';
import * as animationData from './data.json';

function AnimationCov() {
    return <Animation animationData={animationData} width={1981} height={660} />;
}

export default AnimationCov;