diff options
Diffstat (limited to 'packages/dev-tools-pages/ts/components/animations/cov/index.tsx')
-rw-r--r-- | packages/dev-tools-pages/ts/components/animations/cov/index.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/dev-tools-pages/ts/components/animations/cov/index.tsx b/packages/dev-tools-pages/ts/components/animations/cov/index.tsx new file mode 100644 index 000000000..bd872cc85 --- /dev/null +++ b/packages/dev-tools-pages/ts/components/animations/cov/index.tsx @@ -0,0 +1,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 }; |