Add initial project setup with Vite, React, and ESLint configuration

This commit is contained in:
2025-02-16 18:34:38 +01:00
parent cd368dba55
commit 36f1d03a53
7 changed files with 2934 additions and 0 deletions

8
src/App.jsx Normal file
View File

@@ -0,0 +1,8 @@
export default () => {
return (
<>
<h2>Planspiele</h2>
</>
)
}

9
src/main.jsx Normal file
View File

@@ -0,0 +1,9 @@
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "./App.jsx";
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)