Files
Stirling-PDF/client-tauri/src/pages/Home.tsx

14 lines
311 B
TypeScript
Raw Normal View History

2024-01-28 19:14:53 +01:00
import { Link } from "react-router-dom";
2023-11-03 12:06:55 +03:00
function Home() {
return (
2024-01-04 20:17:54 -05:00
<div>
<h2>Home</h2>
2024-01-28 19:14:53 +01:00
<Link to="/about">About</Link><br />
<Link to="/dashboard">Dashboard</Link><br />
<Link to="/dynamic">Dynamic</Link>
2024-01-04 20:17:54 -05:00
</div>
2023-11-03 12:06:55 +03:00
);
}
export default Home;