react-code-dataset / spectrum /src /hot-routes.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
239 Bytes
// @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);