afc163
9 years ago
2 changed files with 12 additions and 3 deletions
@ -1,3 +1,12 @@ |
|||
import QueueAnim from 'rc-queue-anim'; |
|||
import React from 'react'; |
|||
import RcQueueAnim from 'rc-queue-anim'; |
|||
import warning from 'warning'; |
|||
|
|||
export default QueueAnim; |
|||
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} />; |
|||
} |
|||
} |
|||
|
Loading…
Reference in new issue