Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
425 Bytes
import Providers from './providers'
import type React from 'react'
import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>
<Providers>{children}</Providers>
</body>
</html>
)
}