rename all files and directories to lowercase

This commit is contained in:
August Skare
2018-11-19 17:27:00 +01:00
parent 881655bb57
commit 31d07fdac8
30 changed files with 0 additions and 0 deletions

View File

@@ -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 as Animation };