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