mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 13:08:41 +08:00
12 lines
267 B
JavaScript
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;
|