aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/animations/cov/index.tsx
blob: bd872cc85f28281b2c380e8e220de1e91071ac37 (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 CovAnimation: React.StatelessComponent<{}> = () => (
    <BaseAnimation animationData={animationData} width={1981} height={660} />
);

export { CovAnimation };