import { Component, ReactNode } from "react"; import { Popup } from "@Context/Popups"; import { Localization } from "@Component/Localization/Localization"; import { SearchBox } from "@Component/SearchBox/SearchBox"; import { ConfirmContent } from "@Component/ConfirmPopup/ConfirmPopup"; import "./BehaviorPopup.scss"; interface IBehaviorPopupProps { } interface IBehaviorPopupState { searchValue: string; } 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 { state: Readonly = { searchValue: "" }; private renderHeader = () => { return
{ this.setState({ searchValue: value }); }} value={this.state.searchValue} />
; } public render(): ReactNode { return } } export { BehaviorPopup };