10 lines
150 B
TypeScript
10 lines
150 B
TypeScript
import type { ReactNode } from "react";
|
|
|
|
export default function LegacyChatLayout({
|
|
children,
|
|
}: {
|
|
children: ReactNode;
|
|
}) {
|
|
return children;
|
|
}
|