1
0
Fork 0
mirror of https://codeberg.org/MarkusThielker/next-ory.git synced 2025-07-01 04:29:18 +00:00

NORY-15: improve root layout and styling

This commit is contained in:
Markus Thielker 2024-12-06 16:34:35 +01:00
parent 59ed13b2cc
commit 71d0e81ebd
No known key found for this signature in database
5 changed files with 16 additions and 19 deletions

View file

@ -2,6 +2,7 @@
import { ColumnDef, flexRender, getCoreRowModel, useReactTable } from '@tanstack/react-table';
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/ui/table';
import React from 'react';
interface DataTableProps<TData, TValue> {
columns: ColumnDef<TData, TValue>[];