mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-10 23:51:59 +00:00
12 lines
243 B
TypeScript
12 lines
243 B
TypeScript
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;
|