chore: export table from components dir

This commit is contained in:
2024-05-11 14:10:55 +02:00
parent 6ba32251bc
commit 943e97e201
2 changed files with 6 additions and 4 deletions

View File

@@ -1,15 +1,16 @@
import s from './decks-table.module.scss'
import { Edit2Outline, PlayCircleOutline, TrashOutline } from '@/assets'
import { Button, Typography } from '@/components'
import {
Button,
Typography,
Table,
TableBody,
TableCell,
TableHead,
TableHeadCell,
TableRow,
} from '@/components/ui/table'
import s from './decks-table.module.scss'
} from '@/components'
type Deck = {
cards: number

View File

@@ -5,3 +5,4 @@ export * from './checkbox'
export * from './text-field'
export * from './controlled'
export * from './radio-group'
export * from './table'