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)

26 lines (20 loc) 892 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } var React = require('react'); var React__default = _interopDefault(React); var styles = require('./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(styles.StyledTable, { "data-testid": "data-table" }, children); }; exports.Datatable = Datatable;