ant-design/components/enter-animation/index.jsx
2015-09-11 12:02:08 +08:00

13 lines
268 B
JavaScript

import React from 'react';
import EnterAnimation from 'enter-animation';
class AntEnterAnimation extends React.Component {
render() {
return <EnterAnimation {...this.props} />;
}
}
AntEnterAnimation.to = EnterAnimation.to;
export default AntEnterAnimation;