{children}
+ 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 ( +