basic setup

react
ts
tailwind
vite
biome
bun
This commit is contained in:
Oliver Bryan
2026-01-07 12:22:30 +00:00
parent c0700e1373
commit 019b8545f1
13 changed files with 707 additions and 0 deletions

10
src/main.tsx Normal file
View File

@@ -0,0 +1,10 @@
import "./App.css";
import React from "react";
import ReactDOM from "react-dom/client";
import App from "@/App";
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);