diff options
author | August Skare <post@augustskare.no> | 2018-11-20 22:18:09 +0800 |
---|---|---|
committer | August Skare <post@augustskare.no> | 2018-11-20 22:18:09 +0800 |
commit | 339ec3e8ebac25fe7ee6eb26b89bfc9b9e00db26 (patch) | |
tree | 121826cd49e78833991e20ee88ea88660bba1077 /packages/dev-tools-pages/ts/components/animations | |
parent | b0c22a222e09ef8008a1ef7cf79e28b73961560a (diff) | |
download | dexon-0x-contracts-339ec3e8ebac25fe7ee6eb26b89bfc9b9e00db26.tar.gz dexon-0x-contracts-339ec3e8ebac25fe7ee6eb26b89bfc9b9e00db26.tar.zst dexon-0x-contracts-339ec3e8ebac25fe7ee6eb26b89bfc9b9e00db26.zip |
uniq export names for animations
Diffstat (limited to 'packages/dev-tools-pages/ts/components/animations')
4 files changed, 7 insertions, 7 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 index db93ff8a4..ba98f8da3 100644 --- a/packages/dev-tools-pages/ts/components/animations/compiler/index.tsx +++ b/packages/dev-tools-pages/ts/components/animations/compiler/index.tsx @@ -8,4 +8,4 @@ const CompilerAnimation: React.StatelessComponent<{}> = () => ( <BaseAnimation animationData={animationData} width={2150} height={700} /> ); -export { CompilerAnimation as Animation }; +export { CompilerAnimation }; diff --git a/packages/dev-tools-pages/ts/components/animations/cov/index.tsx b/packages/dev-tools-pages/ts/components/animations/cov/index.tsx index 445824717..bd872cc85 100644 --- a/packages/dev-tools-pages/ts/components/animations/cov/index.tsx +++ b/packages/dev-tools-pages/ts/components/animations/cov/index.tsx @@ -4,8 +4,8 @@ import { BaseAnimation } from '../index'; import * as animationData from './data.json'; -const AnimationCov: React.StatelessComponent<{}> = () => ( +const CovAnimation: React.StatelessComponent<{}> = () => ( <BaseAnimation animationData={animationData} width={1981} height={660} /> ); -export { AnimationCov as Animation }; +export { CovAnimation }; diff --git a/packages/dev-tools-pages/ts/components/animations/profiler/index.tsx b/packages/dev-tools-pages/ts/components/animations/profiler/index.tsx index 73a4e9ad6..a2848b762 100644 --- a/packages/dev-tools-pages/ts/components/animations/profiler/index.tsx +++ b/packages/dev-tools-pages/ts/components/animations/profiler/index.tsx @@ -4,8 +4,8 @@ import { BaseAnimation } from '../index'; import * as animationData from './data.json'; -const AnimationProfiler: React.StatelessComponent<{}> = () => ( +const ProfilerAnimation: React.StatelessComponent<{}> = () => ( <BaseAnimation animationData={animationData} width={1985} height={657} /> ); -export { AnimationProfiler as Animation }; +export { ProfilerAnimation }; diff --git a/packages/dev-tools-pages/ts/components/animations/trace/index.tsx b/packages/dev-tools-pages/ts/components/animations/trace/index.tsx index 10a78ccb7..2009c3cec 100644 --- a/packages/dev-tools-pages/ts/components/animations/trace/index.tsx +++ b/packages/dev-tools-pages/ts/components/animations/trace/index.tsx @@ -4,8 +4,8 @@ import { BaseAnimation } from '../index'; import * as animationData from './data.json'; -const AnimationTrace: React.StatelessComponent<{}> = () => ( +const TraceAnimation: React.StatelessComponent<{}> = () => ( <BaseAnimation animationData={animationData} width={2241} height={610} /> ); -export { AnimationTrace as Animation }; +export { TraceAnimation }; |