You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
|
|
|
import DocumentTitle from 'react-document-title';
|
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
import { ConnectedRouter } from 'connected-react-router';
|
|
|
|
import PageConnector from 'Components/Page/PageConnector';
|
|
|
|
import AppRoutes from './AppRoutes';
|
|
|
|
|
|
|
|
function App({ store, history }) {
|
|
|
|
return (
|
|
|
|
<DocumentTitle title="Lidarr">
|
|
|
|
<Provider store={store}>
|
|
|
|
<ConnectedRouter history={history}>
|
|
|
|
<PageConnector>
|
|
|
|
<AppRoutes app={App} />
|
|
|
|
</PageConnector>
|
|
|
|
</ConnectedRouter>
|
|
|
|
</Provider>
|
|
|
|
</DocumentTitle>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
App.propTypes = {
|
|
|
|
store: PropTypes.object.isRequired,
|
|
|
|
history: PropTypes.object.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
export default App;
|