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