chore: scaffold the project

This commit is contained in:
2024-04-18 15:10:31 +02:00
commit 7ba2e15940
13 changed files with 1805 additions and 0 deletions

10
src/main.tsx Normal file
View File

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