ant-design/components/queue-anim/index.jsx
2016-03-29 19:50:05 +08:00

13 lines
422 B
JavaScript

import React from 'react';
import RcQueueAnim from 'rc-queue-anim';
import warning from 'warning';
export default class QueueAnim extends React.Component {
render() {
warning(false, '`QueueAnim` is deperated, ' +
'you can import QueueAnim from \'rc-queue-anim\' directly.' +
'The Demo will be moved to http://motion.ant.design/#/component/queue-anim');
return <RcQueueAnim {...this.props} />;
}
}