aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/animations/compiler/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/dev-tools-pages/ts/components/animations/compiler/index.tsx')
-rw-r--r--packages/dev-tools-pages/ts/components/animations/compiler/index.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/dev-tools-pages/ts/components/animations/compiler/index.tsx b/packages/dev-tools-pages/ts/components/animations/compiler/index.tsx
new file mode 100644
index 000000000..ba98f8da3
--- /dev/null
+++ b/packages/dev-tools-pages/ts/components/animations/compiler/index.tsx
@@ -0,0 +1,11 @@
+import * as React from 'react';
+
+import { BaseAnimation } from '../index';
+
+import * as animationData from './data.json';
+
+const CompilerAnimation: React.StatelessComponent<{}> = () => (
+ <BaseAnimation animationData={animationData} width={2150} height={700} />
+);
+
+export { CompilerAnimation };