Add search-zen-50 React SPA source code to frontend/ directory. Build artifacts (dist, node_modules, lock files) are gitignored. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
5 lines
161 B
TypeScript
5 lines
161 B
TypeScript
import { createRoot } from "react-dom/client";
|
|
import App from "./App.tsx";
|
|
import "./index.css";
|
|
|
|
createRoot(document.getElementById("root")!).render(<App />);
|