Chassis demo

Isolated sandbox for every component the chassis exports. Each sub-page uses sample data so the chassis pieces can be exercised without wiring a backend.

What's here

How consumers wire it

// tsconfig.json
"paths": {
  "@/*": ["./src/*"],
  "@chassis/*": ["./vendor/chassis/src/lib/*"]
}

// import in any product
import { PortalTable } from "@chassis/components/PortalTable";
import { FilterSidePanel } from "@chassis/components/FilterSidePanel";
import { formatCurrency } from "@chassis/format";
import {
  TenantFormatsProvider,
  useTenantFormats,
} from "@chassis/tenant/TenantFormatsContext";