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

File diff suppressed because one or more lines are too long