code style

This commit is contained in:
afc163 2015-08-18 16:58:07 +08:00
parent 52b32e2ec6
commit 24b81829a1

View File

@ -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 <EnterAnimation {...this.props} />;
}
}
AntEnterAnimation.to = EnterAnimation.to;
export default AntEnterAnimation;