UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

21 lines (20 loc) 640 B
/** * @file index.tsx * * @fileoverview Datatable component, displays information in a tabular way. */ import React from 'react'; export interface DatatableProps { /** * Text for the button * * @default null */ children?: React.ReactNode; } /** * A data table can be used to show tabular data to a user. A list of jobs on a job management screen or a * list of job alerts the user has saved. Data in a table could be sorted, include filters, or include pagination to make it easier * for the user to filter down the data. */ export declare const Datatable: ({ children }: DatatableProps) => JSX.Element;