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
+7
View File
@@ -0,0 +1,7 @@
export default function App() {
return (
<>
<h1>Hello, World!</h1>
</>
);
}
+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>
);
+1
View File
@@ -0,0 +1 @@
/// <reference types="vite/client" />