blob: 5cb385b61c092753ba9b88c8d4db9eb4337826eb [file] [log] [blame]
Michael Landoefa037d2017-02-19 12:57:33 +02001import React from 'react';
2import {Provider} from 'react-redux';
3import NotificationModal from 'nfvo-components/notifications/NotificationModal.jsx';
4import Loader from 'nfvo-components/loader/Loader.jsx';
5import store from './AppStore.js';
6
7
8class Application extends React.Component {
9 render() {
10 return (
11 <Provider store={store}>
12 <div>
13 <NotificationModal />
14 {this.props.children}
15 <Loader />
16 </div>
17 </Provider>
18 );
19 }
20}
21
22export default Application;
23