Files
cozsweet-frontend-nextjs/src/app/chat/layout.tsx
T

10 lines
150 B
TypeScript

import type { ReactNode } from "react";
export default function LegacyChatLayout({
children,
}: {
children: ReactNode;
}) {
return children;
}