aboutsummaryrefslogtreecommitdiffstats
path: root/web/app/bookmarks/page.tsx
blob: f0efa2e4f4e792031a65cf5508c5d8a122d976db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import AddLink from "./components/AddLink";
import LinksGrid from "./components/LinksGrid";

export default async function Bookmarks() {
  return (
    <>
      <AddLink />
      <LinksGrid />
    </>
  );
}