Files
Web-Architekturen-Projekt/frontend/src/App.tsx
T
2026-05-27 14:37:46 +02:00

18 lines
595 B
TypeScript

import { Outlet, Link } from "react-router-dom";
export default function App() {
return (
<div style={{ fontFamily: "system-ui, sans-serif", maxWidth: 800, margin: "0 auto", padding: "1rem" }}>
<nav style={{ marginBottom: "2rem", borderBottom: "1px solid #ddd", paddingBottom: "1rem" }}>
<Link to="/" style={{ marginRight: "1rem", textDecoration: "none", color: "#0066cc" }}>
Neuer Paste
</Link>
<Link to="/admin" style={{ textDecoration: "none", color: "#0066cc" }}>
Admin
</Link>
</nav>
<Outlet />
</div>
);
}