Adds Paginator Component

This commit is contained in:
Indrajith K L
2019-12-12 21:02:20 +05:30
parent 7593008ad2
commit 5e3d9da215
2 changed files with 56 additions and 0 deletions

View File

@@ -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>
);