// @flow import React from 'react'; import { Provider } from 'react-redux'; import { Router } from 'react-router'; import routes from '../routes'; type RootType = { store: {}, history: {} }; export default function Root({ store, history }: RootType) { return ( ); }