Skip to content

Commit 9e3b1ba

Browse files
fix: simplify function signature in RootLayout component
1 parent 6810968 commit 9e3b1ba

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

UIs/Landing/app/layout.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,7 @@ export const viewport: Viewport = {
1818
themeColor: '#ed214d',
1919
}
2020

21-
export default function RootLayout({
22-
children,
23-
}: Readonly<{
24-
children: React.ReactNode
25-
}>) {
21+
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
2622
return (
2723
<html lang="pt-BR">
2824
<body className={`${_inter.variable} ${_spaceGrotesk.variable} font-sans antialiased`} suppressHydrationWarning>

0 commit comments

Comments
 (0)