display overhaul, compatibility with legacy plugins, fixes

This commit is contained in:
marios
2022-05-26 04:00:18 +03:00
parent 74438a3145
commit 4b923c1dc7
20 changed files with 2014 additions and 229 deletions
+13
View File
@@ -0,0 +1,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;