link-stack/apps/link/app/(main)/layout.tsx
Darren Clarke f901f203b0 Develop
2023-07-18 12:26:57 +00:00

15 lines
353 B
TypeScript

import { ReactNode } from "react";
import { Metadata } from "next";
import { InternalLayout } from "./_components/InternalLayout";
export const metadata: Metadata = {
title: "Link",
};
type LayoutProps = {
children: ReactNode;
};
export default function Layout({ children }: LayoutProps) {
return <InternalLayout>{children}</InternalLayout>;
}