translation in frontend

This commit is contained in:
Felix Kaspar
2024-01-28 19:14:53 +01:00
parent 9a721f8658
commit fbc921a077
9 changed files with 80 additions and 15 deletions

View File

@@ -1,8 +1,12 @@
import { Link } from "react-router-dom";
function Home() {
return (
<div>
<h2>Home</h2>
<Link to="/about">About</Link><br />
<Link to="/dashboard">Dashboard</Link><br />
<Link to="/dynamic">Dynamic</Link>
</div>
);
}