summaryrefslogtreecommitdiff
path: root/frontend/src/components/LegacyPlugin.tsx
blob: 86abf2c811e327d3eac0637e9422cdd59fb00e83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import React 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>
    }
}

export default LegacyPlugin;