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)

19 lines (16 loc) 648 B
import React__default from 'react'; import { StyledTable } from './styles.js'; /** * @file index.tsx * * @fileoverview Datatable component, displays information in a tabular way. */ /** * 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. */ const Datatable = ({ children }) => { return React__default.createElement(StyledTable, { "data-testid": "data-table" }, children); }; export { Datatable };