Files
decky-loader/frontend/src/components/LegacyPlugin.tsx
T
Jonas Dellinger ad1f57795e Fix LegacyPlugin
2022-05-26 13:31:18 +02:00

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;