---
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import { Providers } from '@/Providers'
|
||||
import type { Metadata } from 'next'
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Meme Search Client'
|
||||
}
|
||||
|
||||
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
|
||||
return (
|
||||
<html lang='en'>
|
||||
<body>
|
||||
<Providers>
|
||||
{children}
|
||||
</Providers>
|
||||
</body>
|
||||
</html>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user