link-stack/apps/link/app/(main)/setup/page.tsx

11 lines
191 B
TypeScript
Raw Permalink Normal View History

2023-07-18 12:26:57 +00:00
import { Metadata } from "next";
import { Setup } from "./_components/Setup";
export const metadata: Metadata = {
title: "Link",
};
export default function Page() {
return <Setup />;
}