From 6771e71b01345219b4239413260ecf5909d94914 Mon Sep 17 00:00:00 2001 From: Lee-Dongwook Date: Mon, 28 Oct 2024 09:23:54 +0900 Subject: [PATCH] feat : ChatLayout.tsx --- src/app/chat/layout.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/app/chat/layout.tsx b/src/app/chat/layout.tsx index e69de29..5b2804a 100644 --- a/src/app/chat/layout.tsx +++ b/src/app/chat/layout.tsx @@ -0,0 +1,22 @@ +import React from 'react'; + +export const metadata = { + title: 'Chat', +}; + +interface ChatLayoutProps { + children: React.ReactNode; +} + +export default function ChatLayout({ children }: ChatLayoutProps) { + return ( +
+
+

Chat Sessions

+
+
+
{children}
+
+
+ ); +}