UNPKG

react-yajra-datatable

Version:

React component without dependencies to use with yajra laravel-datatables

10 lines (7 loc) 252 B
import React from 'react'; const LoadingIndicator = ({ start, dataLength, recordsTotal }) => ( <div className="status"> {`Showing ${start} to ${(start + dataLength - 1)} of ${recordsTotal}`} </div> ); export default LoadingIndicator;