Files
msgapp/src/app/components/AppHeader.tsx

14 lines
306 B
TypeScript
Raw Normal View History

export function AppHeader() {
return (
<header style={{ display: "flex", justifyContent: "space-between", padding: 12 }}>
<div>msg App</div>
<nav style={{ display: "flex", gap: 12 }}>
<a href="/"></a>
<a href="/boards"></a>
</nav>
</header>
);
}