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;