point-of-sales/pos-frontend/app/layout.tsx

17 lines
313 B
TypeScript

import { Providers } from './providers'
import { fonts } from './fonts'
export default function RootLayout({
children,
}: {
children: React.ReactNode,
}) {
return (
<html lang='en' className={fonts.rubik.variable}>
<body>
<Providers>{children}</Providers>
</body>
</html>
)
}