Complete "Layout Routes".

This commit is contained in:
2025-04-01 12:17:04 +02:00
parent 276bea81b0
commit 298d25a579
7 changed files with 112 additions and 45 deletions

View File

@@ -0,0 +1,15 @@
import React from "react";
export default function Home() {
return (
<p id="index-page">
This is a demo for React Router.
<br/>
Check out{" "}
<a href="https://reactrouter.com">
the docs at reactrouter.com
</a>
.
</p>
);
}