Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
* SOFTWARE.
*/
import React, { Component } from 'react'
import deprecated, { changedPackageWarning } from '@instructure/ui-utils/lib/react/deprecated'
import UITransition from '@instructure/ui-motion/lib/components/Transition'
@deprecated('5.0.0', null, changedPackageWarning(
'ui-core',
'ui-motion'
))
class Transition extends Component {
static propTypes = {
...UITransition.PropTypes
}
render () {
return
}
}
export default Transition