diff --git a/frontend/src/components/LegacyPlugin.tsx b/frontend/src/components/LegacyPlugin.tsx index 40f9e85f..f0dd2521 100644 --- a/frontend/src/components/LegacyPlugin.tsx +++ b/frontend/src/components/LegacyPlugin.tsx @@ -1,21 +1,11 @@ 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
; +const LegacyPlugin: VFC = ({ url }) => { + return ; }; export default LegacyPlugin;