22 lines
454 B
TypeScript
22 lines
454 B
TypeScript
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>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|