Innit Commit

- Created boilerplate for a project of a game made in TypeScript
This commit is contained in:
Christian
2025-06-13 00:07:35 -03:00
commit 570b4e1fa2
13 changed files with 1906 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
function App() {
return (
<>
<h1>UMA COISA MUITO FODA OMEGA</h1>
</>
)
}
export default App
+9
View File
@@ -0,0 +1,9 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)
+1
View File
@@ -0,0 +1 @@
/// <reference types="vite/client" />