diff options
| author | marios8543 <marios8543@gmail.com> | 2023-10-17 16:07:43 +0300 |
|---|---|---|
| committer | marios8543 <marios8543@gmail.com> | 2023-10-17 17:08:23 +0300 |
| commit | 796b8b49f41657a44764c8557b5413bb3935e790 (patch) | |
| tree | 7447f3a2c56f639943d50b18195f6b9e4d0ddfab /frontend/src/components/LegacyPlugin.tsx | |
| parent | 1b9d674a81ab01c52c480cbb6a812938b0e87666 (diff) | |
| download | decky-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.tsx | 11 |
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; |
