import * as React from "react"; import {Flmngr, FlmngrOpenParams} from "flmngr"; export class FlmngrPanel extends React.Component { private containerRef: React.RefObject; constructor(props: FlmngrOpenParams) { super(props); this.containerRef = React.createRef(); } componentDidMount() { if (this.containerRef.current) { Flmngr.mount(this.containerRef.current, this.props); } } render() { return
; } }