Co-authored-by: Jason Woltje <jason@diversecanvas.com> Co-committed-by: Jason Woltje <jason@diversecanvas.com>
15 lines
299 B
TypeScript
15 lines
299 B
TypeScript
import type { ReactNode } from 'react';
|
|
|
|
export const metadata = {
|
|
title: 'Mosaic',
|
|
description: 'Mosaic Stack Dashboard',
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: ReactNode }): ReactNode {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|