summaryrefslogtreecommitdiff
path: root/frontend/src/components/LegacyPlugin.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/LegacyPlugin.tsx')
-rw-r--r--frontend/src/components/LegacyPlugin.tsx11
1 files changed, 0 insertions, 11 deletions
diff --git a/frontend/src/components/LegacyPlugin.tsx b/frontend/src/components/LegacyPlugin.tsx
deleted file mode 100644
index f0dd2521..00000000
--- a/frontend/src/components/LegacyPlugin.tsx
+++ /dev/null
@@ -1,11 +0,0 @@
-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;