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