From 24b81829a1e1a43dcaaf4d92c9bd14342335a381 Mon Sep 17 00:00:00 2001 From: afc163 Date: Tue, 18 Aug 2015 16:58:07 +0800 Subject: [PATCH] code style --- components/enter-animation/index.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/enter-animation/index.jsx b/components/enter-animation/index.jsx index 9c5f5ec932..c46ab865a5 100644 --- a/components/enter-animation/index.jsx +++ b/components/enter-animation/index.jsx @@ -1,9 +1,11 @@ import React from 'react'; import EnterAnimation from 'enter-animation'; -export default class AntEnterAnimation extends React.Component { +class AntEnterAnimation extends React.Component { render() { return ; } } + AntEnterAnimation.to = EnterAnimation.to; +export default AntEnterAnimation;