link-stack/apps/link/app/(main)/admin/label-studio/page.tsx
Darren Clarke f901f203b0 Develop
2023-07-18 12:26:57 +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 />;
}