aboutsummaryrefslogtreecommitdiff
path: root/src/master/master.component.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/master/master.component.js')
-rw-r--r--src/master/master.component.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/master/master.component.js b/src/master/master.component.js
new file mode 100644
index 0000000..703badf
--- /dev/null
+++ b/src/master/master.component.js
@@ -0,0 +1,36 @@
+import React from 'react';
+import { createLoadingSelector, createNotificationSelector } from '../services/selectors';
+import WithLoader from '../shared/loader.hoc';
+import { connect } from "react-redux";
+
+let loadingSelector = createLoadingSelector([
+ 'LOGIN',
+ 'COMMON'
+]);
+
+let errorSelector = createNotificationSelector([
+ 'LOGIN',
+ 'COMMON'
+]);
+
+const MasterComponent = (props) => {
+
+ return (
+ <>
+ {props.children}
+ </>
+ );
+}
+
+
+const mapStateToProps = state => {
+ return {
+ isLoading: loadingSelector(state),
+ error: errorSelector(state)
+ };
+};
+
+export default connect(mapStateToProps)(
+ WithLoader(MasterComponent)
+);
+