blob: f0dd2521e0d546dbb1ef004d9e30daa8dfa76a0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { VFC } from 'react';
interface Props {
url: string;
}
const LegacyPlugin: VFC<Props> = ({ url }) => {
return <iframe style={{ border: 'none', width: '100%', height: '100%' }} src={url}></iframe>;
};
export default LegacyPlugin;
|