Fix more build errors

This commit is contained in:
Darren Clarke 2023-03-15 12:16:54 +00:00
parent d0f1c1337c
commit 1bdc1e60db
2 changed files with 5 additions and 3 deletions

View file

@ -1,10 +1,11 @@
// @ts-nocheck
import { FC } from "react";
import Head from "next/head";
import { Grid } from "@mui/material";
import { Layout } from "components/Layout";
import Iframe from "react-iframe";
const Metamigo = () => (
const LabelStudio: FC = () => (
<Layout>
<Head>
<title>Link Shell</title>
@ -18,7 +19,7 @@ const Metamigo = () => (
<Grid item sx={{ height: "100vh", width: "100%" }}>
<Iframe
id="link"
url={"https://quepasa.link.smex.org"}
url={"https://label-studio:3000"}
width="100%"
height="100%"
frameBorder={0}
@ -28,4 +29,4 @@ const Metamigo = () => (
</Layout>
);
export default Metamigo;
export default LabelStudio;