diff --git a/app/app.css b/app/app.css index f260295..e743c14 100644 --- a/app/app.css +++ b/app/app.css @@ -18,3 +18,13 @@ html, body { } + +table.dataTable thead > tr { + border-bottom: 2px solid #c2c2c2; +} + +table.dataTable tbody > tr > td { + border-left: none !important; + border-right: none !important; + border-bottom: 1px solid #ebebeb; +} diff --git a/app/components/ui/table.tsx b/app/components/ui/table.tsx new file mode 100644 index 0000000..12a9334 --- /dev/null +++ b/app/components/ui/table.tsx @@ -0,0 +1,22 @@ +import DT from 'datatables.net-dt' +import DataTable from 'datatables.net-react' + +export const TableComponent = () => { + DataTable.use(DT) + return ( + <> +