Initial commit: TaskPool React panel

- React frontend with route-level code splitting
- Backend rebranded from Baihu to TaskPool
- DB brand migration script and local compatibility
This commit is contained in:
2026-07-26 08:43:52 +08:00
commit e6956aa001
397 changed files with 73621 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
export { cn } from '@/lib/utils'
export { Button } from './button'
export type { ButtonProps, ButtonVariant, ButtonSize } from './button'
export { Input } from './input'
export { Textarea } from './textarea'
export { Select } from './select'
export type { SelectProps, SelectOption } from './select'
export { Card } from './card'
export { Badge } from './badge'
export type { BadgeTone } from './badge'
export { Modal } from './modal'
export { Table, Th, Td } from './table'
export { Field } from './field'
export { PageHeader } from './page-header'
export { Empty } from './empty'
export { Loading } from './loading'
export { SectionLabel } from './section-label'
export { Switch } from './switch'
export { Tabs } from './tabs'
export { Checkbox } from './checkbox'