blob: 3eb9f44be6bfcb690932e7fe3849e774d7e53ff9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import React from "react";
import AddLink from "./components/AddLink";
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Remember - Bookmarks",
};
export default function BookmarksLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<div className="flex flex-col">
<div>
<AddLink />
</div>
<hr />
<div className="my-4">{children}</div>
</div>
);
}
|