This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
image-juicer/app/containers/Root.js

13 lines
315 B
JavaScript

import React from 'react';
import { Provider } from 'react-redux';
import { Router } from 'react-router';
import routes from '../routes';
export default function Root({ store, history }) {
return (
<Provider store={store}>
<Router key={Math.random()} history={history} routes={routes} />
</Provider>
);
}