summaryrefslogtreecommitdiff
path: root/frontend/src/components/LegacyPlugin.tsx
diff options
context:
space:
mode:
authormarios8543 <marios8543@gmail.com>2023-10-17 16:07:43 +0300
committermarios8543 <marios8543@gmail.com>2023-10-17 17:08:23 +0300
commit796b8b49f41657a44764c8557b5413bb3935e790 (patch)
tree7447f3a2c56f639943d50b18195f6b9e4d0ddfab /frontend/src/components/LegacyPlugin.tsx
parent1b9d674a81ab01c52c480cbb6a812938b0e87666 (diff)
downloaddecky-loader-796b8b49f41657a44764c8557b5413bb3935e790.tar.gz
decky-loader-796b8b49f41657a44764c8557b5413bb3935e790.zip
Drop support for legacy plugins
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;