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

19 lines
491 B
TypeScript
Raw Normal View History

import { ThemeToggle } from "@/app/components/ThemeToggle";
import { SearchBar } from "@/app/components/SearchBar";
export function AppHeader() {
return (
<header style={{ display: "flex", justifyContent: "space-between", padding: 12 }}>
<div>msg App</div>
<nav style={{ display: "flex", gap: 12, alignItems: "center" }}>
<a href="/"></a>
<a href="/boards"></a>
<SearchBar />
<ThemeToggle />
</nav>
</header>
);
}