diff options
author | Indrajith K L | 2019-12-12 21:02:20 +0530 |
---|---|---|
committer | Indrajith K L | 2019-12-12 21:02:20 +0530 |
commit | 5e3d9da21510e1622bcf900a949c8506e4251bce (patch) | |
tree | a86fe926c11f47064d2f9fa8a7bfae6496e04d26 /src/modules/dashboard/dashboard.container.js | |
parent | 7593008ad2d8f65321a7a5992d1cda79b1083123 (diff) | |
download | react-redux-saga-starter-5e3d9da21510e1622bcf900a949c8506e4251bce.tar.gz react-redux-saga-starter-5e3d9da21510e1622bcf900a949c8506e4251bce.tar.bz2 react-redux-saga-starter-5e3d9da21510e1622bcf900a949c8506e4251bce.zip |
:sparkles: Adds Paginator Component
Diffstat (limited to 'src/modules/dashboard/dashboard.container.js')
-rw-r--r-- | src/modules/dashboard/dashboard.container.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/modules/dashboard/dashboard.container.js b/src/modules/dashboard/dashboard.container.js index f792c20..b8ee027 100644 --- a/src/modules/dashboard/dashboard.container.js +++ b/src/modules/dashboard/dashboard.container.js @@ -2,6 +2,7 @@ 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() { @@ -11,6 +12,11 @@ class DashBoardContainer extends Component { <div className="col-md-12"> Dashboard </div> + <div className="col-md-12"> + <Paginator + totalRecords={30} + /> + </div> </div> </div> ); |