import React from "react" import Paginate, { Pagination } from "./Paginate" export interface Props { className?: string, children?: any, seamless?: boolean, height?: number | string, pagination?: Pagination } const Table = ({ children, className, seamless, height, pagination }: Props): JSX.Element => { const getHeight = () => { if (height) return { maxHeight: `${height}px` } return {} } return (