/** * React component for a popup content container * * Takes in a prop for rendering the content inside the popup */ import * as React from "react"; type ReactComponent = new(...args: any[]) => React.Component interface IProps { content: ReactComponent; id: string; props: any; } export function Popup(props: IProps): React.ReactElement { return (
{React.createElement(props.content, props.props)}
) }