Add initial project setup with Vite, React, and ESLint configuration
This commit is contained in:
8
src/App.jsx
Normal file
8
src/App.jsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export default () => {
|
||||
|
||||
return (
|
||||
<>
|
||||
<h2>Planspiele</h2>
|
||||
</>
|
||||
)
|
||||
}
|
9
src/main.jsx
Normal file
9
src/main.jsx
Normal 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>,
|
||||
)
|
Reference in New Issue
Block a user