link-stack/apps/link/app/(main)/admin/metamigo/_components/MetamigoWrapper.tsx
2023-07-21 12:26:02 +00:00

30 lines
619 B
TypeScript

"use client";
import { FC } from "react";
import { Grid } from "@mui/material";
import Iframe from "react-iframe";
type MetamigoWrapperProps = {
path: string;
};
export const MetamigoWrapper: FC<MetamigoWrapperProps> = ({ path }) => {
return (
<Grid
container
spacing={0}
sx={{ height: "100%", width: "100%" }}
direction="column"
>
<Grid item sx={{ height: "100vh", width: "100%" }}>
<Iframe
id="metamigo"
url="/proxy/metamigo"
width="100%"
height="100%"
frameBorder={0}
/>
</Grid>
</Grid>
);
};