project scaffolding + day 1

This commit is contained in:
2022-05-19 21:38:18 +02:00
parent 99bb85eef1
commit cce9fa1606
17 changed files with 1560 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>
);