commerce/app/product/layout.tsx
Zubair Mughal cfdc043a5f initial setup
navbar styling
2024-03-24 12:32:31 -05:00

13 lines
251 B
TypeScript

export const metadata = {
title: 'Next.js',
description: 'Generated by Next.js'
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}