feat: bootstrap Vite and pnpm toolchain contract

This commit is contained in:
donghyeon-ka
2026-07-25 20:39:06 +09:00
parent 91ae42a2a7
commit 7b35f6b551
17 changed files with 952 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
function BootstrapShell() {
return (
<main>
<h1>Clean Architecture Frontend</h1>
<p>런타임 계약을 불러오는 중입니다.</p>
</main>
);
}
const rootElement = document.getElementById("root");
if (!rootElement) {
throw new Error("Missing #root mount element");
}
createRoot(rootElement).render(
<StrictMode>
<BootstrapShell />
</StrictMode>,
);