aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/Animations/Compiler/index.tsx
blob: dbd8a379951a6c74511dffd4b5ad839d83323ac9 (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 AnimationCompiler() {
    return <Animation animationData={animationData} width={2150} height={700} />;
}

export default AnimationCompiler;