link-stack/apps/link/app/(main)/admin/label-studio/page.tsx
2023-07-10 10:13:06 +00:00

10 lines
238 B
TypeScript

import { Metadata } from "next";
import { LabelStudioWrapper } from "./_components/LabelStudioWrapper";
export const metadata: Metadata = {
title: "Label Studio",
};
export default function Page() {
return <LabelStudioWrapper />;
}