mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-11 02:41:58 +00:00
Cleanup after merge
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import { VFC } from 'react';
|
||||
|
||||
// class LegacyPlugin extends React.Component {
|
||||
// constructor(props: object) {
|
||||
// super(props);
|
||||
// }
|
||||
|
||||
// render() {
|
||||
// return <iframe style={{ border: 'none', width: '100%', height: '100%' }} src={this.props.url}></iframe>
|
||||
// }
|
||||
// }
|
||||
|
||||
interface Props {
|
||||
url: string;
|
||||
}
|
||||
|
||||
const LegacyPlugin: VFC<Props> = () => {
|
||||
return <div>LegacyPlugin Hello World</div>;
|
||||
};
|
||||
|
||||
export default LegacyPlugin;
|
||||
Reference in New Issue
Block a user