mirror of
https://github.com/ChatGPTNextWeb/NextChat.git
synced 2026-02-18 16:17:02 +08:00
5 lines
133 B
TypeScript
5 lines
133 B
TypeScript
import React from "react";
|
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
return <>{children}</>;
|
|
}
|