import React from 'react' import RouterContext from './RouterContext' import warning from './routerWarning' const RoutingContext = React.createClass({ componentWillMount() { warning(false, '`RoutingContext` has been renamed to `RouterContext`. Please use `import { RouterContext } from \'react-router\'`. http://tiny.cc/router-routercontext') }, render() { return } }) export default RoutingContext