mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
10 lines
247 B
JavaScript
10 lines
247 B
JavaScript
import React from 'react';
|
|
import EnterAnimation from 'enter-animation';
|
|
|
|
export default class AntEnterAnimation extends React.Component {
|
|
render() {
|
|
return <EnterAnimation {...this.props} />;
|
|
}
|
|
}
|
|
AntEnterAnimation.to = EnterAnimation.to;
|