mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
15 lines
454 B
TypeScript
15 lines
454 B
TypeScript
import * as React from 'react';
|
|
import RcQueueAnim from 'rc-queue-anim';
|
|
import warning from 'warning';
|
|
|
|
export default class QueueAnim extends React.Component {
|
|
componentDidMount() {
|
|
warning(false, '`QueueAnim` is deprecated, ' +
|
|
'you can import QueueAnim from \'rc-queue-anim\' directly.' +
|
|
'The Demo will be moved to http://motion.ant.design/component/queue-anim');
|
|
}
|
|
render() {
|
|
return <RcQueueAnim {...this.props} />;
|
|
}
|
|
}
|