blob: b8ee0272b8cc434ae4a22794ea0a23e2f30b23b5 (
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
34
|
import React, { Component } from 'react';
import { connect } from "react-redux";
import WithHeaderFooter from '../../shared/header_footer.hoc';
import WithSidebar from '../../shared/sidebar.hoc';
import Paginator from '../../shared/paginator.component';
class DashBoardContainer extends Component {
render() {
return (
<div className="container-fluid">
<div className="row">
<div className="col-md-12">
Dashboard
</div>
<div className="col-md-12">
<Paginator
totalRecords={30}
/>
</div>
</div>
</div>
);
}
}
const mapStateToProps = state => {
return {
};
};
export default connect(mapStateToProps)(
WithSidebar(WithHeaderFooter(DashBoardContainer))
);
|