mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-09-20 10:16:38 +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}</>;
|
|
}
|