From ad1f57795eba57b43579ea5f290278b6de531f90 Mon Sep 17 00:00:00 2001 From: Jonas Dellinger Date: Thu, 26 May 2022 13:31:18 +0200 Subject: Fix LegacyPlugin --- frontend/src/components/LegacyPlugin.tsx | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'frontend/src/components/LegacyPlugin.tsx') 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; -- cgit v1.2.3