ant-design/components/enter-animation/index.jsx
2015-08-18 16:58:07 +08:00

12 lines
267 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;