aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/Animations/Profiler/index.tsx
blob: e767a587f69daba9d0424ab4ffd4cae39025c54f (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 AnimationProfiler() {
    return <Animation animationData={animationData} width={1985} height={657} />;
}

export default AnimationProfiler;