summaryrefslogtreecommitdiff
path: root/frontend/src/components
diff options
context:
space:
mode:
authormarios8543 <marios8543@gmail.com>2023-10-17 16:07:43 +0300
committermarios8543 <marios8543@gmail.com>2023-10-31 23:17:49 +0200
commit39f64ca6667a0e8703a7a52d6e2bf0da57ee2cb6 (patch)
treec66694a983f4869cecb728c44928e01a1da97b07 /frontend/src/components
parent2391af09eb8d97e485804d8f5c8798a0f1f776a8 (diff)
downloaddecky-loader-39f64ca6667a0e8703a7a52d6e2bf0da57ee2cb6.tar.gz
decky-loader-39f64ca6667a0e8703a7a52d6e2bf0da57ee2cb6.zip
Drop support for legacy plugins
Diffstat (limited to 'frontend/src/components')
-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;