jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
19 lines (16 loc) • 648 B
JavaScript
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 };