Minimal Vite + React + TS + Tailwind app with a typed-props Button component (the future react-docgen-typescript scan target), landed at fixtures/ outside the pnpm workspace and turbo graph. Its dependencies exist on paper only — the runner installs them after cloning (story 04); no lockfile, never pnpm-installed here. Ignore surfaces follow the docs/product/reference precedent: fallow, root ESLint, prettier, and the coverage:diff ALLOWED_GLOBS all skip fixtures/**. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016j8z4VHjedXDTjEDNg7qHK
13 lines
351 B
TypeScript
13 lines
351 B
TypeScript
import { Button } from "./components/Button";
|
|
|
|
export function App() {
|
|
return (
|
|
<main className="flex min-h-screen flex-col items-center justify-center gap-4 bg-slate-50">
|
|
<h1 className="text-2xl font-semibold text-slate-900">vite-kitchen</h1>
|
|
<Button variant="primary" size="md">
|
|
Order up
|
|
</Button>
|
|
</main>
|
|
);
|
|
}
|