diff options
Diffstat (limited to 'frontend/src/components/LegacyPlugin.tsx')
| -rw-r--r-- | frontend/src/components/LegacyPlugin.tsx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/frontend/src/components/LegacyPlugin.tsx b/frontend/src/components/LegacyPlugin.tsx new file mode 100644 index 00000000..40f9e85f --- /dev/null +++ b/frontend/src/components/LegacyPlugin.tsx @@ -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; |
