11 lines
238 B
TypeScript
11 lines
238 B
TypeScript
|
|
export const metadata = {
|
||
|
|
title: "Dashcode Next Js",
|
||
|
|
description: "Dashcode is a popular dashboard template.",
|
||
|
|
};
|
||
|
|
|
||
|
|
const layout = ({ children }: { children: React.ReactNode }) => {
|
||
|
|
return <>{children}</>;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default layout;
|