2018-11-16 11:05:30 +01:00

12 lines
312 B
TypeScript

import * as React from 'react';
import { BaseAnimation } from '../index';
import * as animationData from './data.json';
const AnimationProfiler: React.StatelessComponent<{}> = () => (
<BaseAnimation animationData={animationData} width={1985} height={657} />
);
export { AnimationProfiler as Animation };