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

import { BaseAnimation } from '../index';

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

const AnimationCov: React.StatelessComponent<{}> = () => (
    <BaseAnimation animationData={animationData} width={1981} height={660} />
);

export { AnimationCov as Animation };