import { Component, ReactNode } from "react"; import { Popup } from "@Context/Popups"; import { Theme } from "@Component/Theme/Theme"; import { Localization } from "@Component/Localization/Localization"; import "./BehaviorPopup.scss"; interface IBehaviorPopupProps { } class BehaviorPopup extends Popup { public minWidth: number = 400; public minHeight: number = 300; public width: number = 600; public height: number = 450; public onRenderHeader(): ReactNode { return } public render(): ReactNode { return } } class BehaviorPopupComponent extends Component { public render(): ReactNode { return } } export { BehaviorPopup };