mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +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;
|