ant-design/components/enter-animation/index.jsx

10 lines
247 B
React
Raw Normal View History

2015-07-28 12:32:27 +08:00
import React from 'react';
import EnterAnimation from 'enter-animation';
export default class AntEnterAnimation extends React.Component {
render() {
return <EnterAnimation {...this.props} />;
}
}
2015-07-28 15:16:51 +08:00
AntEnterAnimation.to = EnterAnimation.to;