chore: starter template

This commit is contained in:
e2e
2026-07-10 22:04:38 +02:00
commit 0e884ba4f8
157 changed files with 6462 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
export { UserCard } from './src/UserCard'
export type { User, UserCardProps } from './src/UserCard'
export { stubQuery } from './src/fixtures/stubQuery'
export { stubMutation } from './src/fixtures/stubMutation'
export { EmptyState } from './src/EmptyState'
export { NotFoundState } from './src/NotFoundState'
export { PageLoader } from './src/PageLoader'
export { ServerErrorState } from './src/ServerErrorState'
// Layout primitives — compose these instead of hand-rolling page chrome.
export { PageHeader } from './src/PageHeader'
export type { PageHeaderProps } from './src/PageHeader'
export { Panel } from './src/Panel'
export type { PanelProps } from './src/Panel'
export { StatCard } from './src/StatCard'
export type { StatCardProps } from './src/StatCard'
export { StatGrid } from './src/StatGrid'
export type { StatGridProps } from './src/StatGrid'
// Data presentation — feed these the output of a list/stats RPC you implement.
export { DataTable } from './src/DataTable'
export type { DataTableProps, DataTableColumn } from './src/DataTable'
export { BarChart } from './src/BarChart'
export type { BarChartProps, BarChartDatum } from './src/BarChart'