File size: 219 Bytes
c3e8f3d
f80b091
c3e8f3d
 
009c95b
 
 
c3e8f3d
1
2
3
4
5
6
7
8
9
interface ChatLayoutProps {
  children: React.ReactNode;
}

export default async function Layout({ children }: ChatLayoutProps) {
  // return <Suspense fallback={<Loading />}>{children}</Suspense>;
  return children;
}