f64688a16f
Bootstraps the web/ SPA: Vite 6 + React 19 + TypeScript 5.8, Vitest with jsdom, @testing-library/react, and a green smoke test asserting the App renders its Collection heading. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
import { StrictMode } from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import { App } from "./app";
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>,
|
|
);
|