blob: 91b0d1c54c85aa6e1aa29cf3e304533f94fa711f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import React, { Component } from 'react';
import { connect } from "react-redux";
import WithHeaderFooter from '../../shared/header_footer.hoc';
import WithSidebar from '../../shared/sidebar.hoc';
class AdminContainer extends Component {
constructor(props) {
console.log(props);
super(props);
}
render() {
return (
<div className="container-fluid">
<div className="row">
<div className="col-md-12">
Admin Container
</div>
</div>
</div>
);
}
}
const mapStateToProps = state => {
return {
};
};
export default connect(mapStateToProps)(
WithSidebar(WithHeaderFooter(AdminContainer))
);
|