From ebb262199675758b48eb324a38cb881975b0556d Mon Sep 17 00:00:00 2001 From: Fuck U <47294782+Pessimisticc@users.noreply.github.com> Date: Tue, 4 Apr 2023 00:13:31 +0800 Subject: [PATCH] Update layout.tsx --- app/layout.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index 0681b9764..05c417c45 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -41,7 +41,11 @@ function Meta() { ); } -export default function RootLayout({ children }: { children: React.ReactNode }): JSX.Element { +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { return (
@@ -58,13 +62,8 @@ export default function RootLayout({ children }: { children: React.ReactNode }): rel="stylesheet" > - - {/* 在这里添加51la站长统计代码 */} - - {children} ); } -