File size: 239 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
// @flow
// This takes the ./routes.js file and makes it hot reload.
// This should only be used on the client, not on the server!
import { hot } from 'react-hot-loader';
import Routes from './routes';
export default hot(module)(Routes);
|