import web3 from "Embark/web3" import EmbarkJS from 'Embark/EmbarkJS'; import React from 'react'; import {Button} from 'react-bootstrap'; class Paginator extends React.Component { constructor(props) { super(props); this.state = { }; } render(){ let ln = Math.ceil(this.props.total / this.props.recordsByPage); let btnArray = [] for(let i = 1; i <= ln; i++){ btnArray.push() } return