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 { Edit2Outline, PlayCircleOutline, TrashOutline } from '@/assets'
import { Button, Typography } from '@/components'
import { import {
Button,
Typography,
Table, Table,
TableBody, TableBody,
TableCell, TableCell,
TableHead, TableHead,
TableHeadCell, TableHeadCell,
TableRow, TableRow,
} from '@/components/ui/table' } from '@/components'
import s from './decks-table.module.scss'
type Deck = { type Deck = {
cards: number cards: number

View File

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