Initial Commit

This commit is contained in:
Fernando Videira
2024-02-18 19:48:45 +00:00
commit 387522e5a7
12 changed files with 3421 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App.tsx";
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
</React.StrictMode>
);