Add routing

This commit is contained in:
2025-02-17 21:23:38 +01:00
parent b6c7edecfd
commit 1cbcb8ce4c
11 changed files with 119 additions and 5 deletions
+3
View File
@@ -0,0 +1,3 @@
.container {
text-align: left;
}
+11
View File
@@ -0,0 +1,11 @@
import './index.css';
function Home() {
return (
<div className='container'>
<h1>Home</h1>
</div>
);
}
export default Home;