blob: 40f9e85fd24389b3df30df52e06035feefc6d54b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import { VFC } from 'react';
// class LegacyPlugin extends React.Component {
// constructor(props: object) {
// super(props);
// }
// render() {
// return <iframe style={{ border: 'none', width: '100%', height: '100%' }} src={this.props.url}></iframe>
// }
// }
interface Props {
url: string;
}
const LegacyPlugin: VFC<Props> = () => {
return <div>LegacyPlugin Hello World</div>;
};
export default LegacyPlugin;
|