/* eslint-disable @typescript-eslint/no-explicit-any */ import { DataWidgetType } from "./Setting"; type SettingPopupProps = { activeDataWidgetType: DataWidgetType; onSettingClick: () => void; onChooserClick: () => void; onWidgetTypeClick: () => void; }; const SettingPopup = (props: SettingPopupProps) => { return (
Column Chooser
{props.activeDataWidgetType === DataWidgetType.CARD ? "Change To Grid View" : "Change To Card View"}
); }; export default SettingPopup;