11 lines
238 B
TypeScript
11 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 />;
|
||
|
|
}
|