link-stack/apps/link/app/layout.tsx

23 lines
454 B
TypeScript
Raw Normal View History

2023-06-26 10:07:12 +00:00
import { ReactNode } from "react";
import { Metadata } from "next";
import "./_styles/global.css";
import { MultiProvider } from "./_components/MultiProvider";
export const metadata: Metadata = {
title: "Link",
};
type LayoutProps = {
children: ReactNode;
};
export default function Layout({ children }: LayoutProps) {
return (
<html lang="en">
<body>
<MultiProvider>{children}</MultiProvider>
2023-06-26 10:07:12 +00:00
</body>
</html>
);
}