Skip to content

Commit 43a75c4

Browse files
init conf layout
1 parent 40e63a0 commit 43a75c4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/app/(conf)/conf/layout.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
export default function ConfLayout({
2+
children,
3+
}: {
4+
children: React.ReactNode
5+
}) {
6+
return (
7+
<html lang="en">
8+
<body>
9+
conference site layout
10+
{children}
11+
</body>
12+
</html>
13+
)
14+
}

0 commit comments

Comments
 (0)