testing with React, initial setup + header

This commit is contained in:
2025-12-06 20:07:09 +01:00
parent 131b0d3696
commit b0a52715d3
28 changed files with 298 additions and 166 deletions
+13
View File
@@ -0,0 +1,13 @@
import './App.css'
import Header from './components/Header'
function App() {
return (
<>
<Header></Header>
</>
)
}
export default App