aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/bookmarks/TopNav.tsx
blob: 568af15ddcb24a7bfaf840ea182b5c3528cfe836 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { SearchInput } from "../search/SearchInput";

export default function TopNav() {
  return (
    <div className="container py-4">
      <SearchInput />
    </div>
  );
}