2018-11-07 09:48:10 +01:00

11 lines
264 B
TypeScript

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;