mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-15 17:19:11 +08:00
9 lines
205 B
React
9 lines
205 B
React
|
import React from 'react';
|
||
|
import EnterAnimation from 'enter-animation';
|
||
|
|
||
|
export default class AntEnterAnimation extends React.Component {
|
||
|
render() {
|
||
|
return <EnterAnimation {...this.props} />;
|
||
|
}
|
||
|
}
|