import { VFC } from 'react';
// class LegacyPlugin extends React.Component {
// constructor(props: object) {
// super(props);
// }
// render() {
// return
// }
// }
interface Props {
url: string;
}
const LegacyPlugin: VFC = () => {
return LegacyPlugin Hello World
;
};
export default LegacyPlugin;