link-stack/apps/link/app/(main)/admin/label-studio/page.tsx

11 lines
238 B
TypeScript
Raw Normal View History

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