mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-17 16:56:21 +10:00
12 lines
204 B
React
12 lines
204 B
React
import React from 'react';
|
|
import QueueAnim from 'rc-queue-anim';
|
|
|
|
class AntQueueAnim extends React.Component {
|
|
render() {
|
|
return <QueueAnim {...this.props} />;
|
|
}
|
|
}
|
|
export default AntQueueAnim;
|
|
|
|
|