Interface ItemFormPopupProps

interface ItemFormPopupProps {
    children?: ReactNode;
    item?: Item;
    layer: LayerProps;
    position: LatLng;
    setItemFormPopup?: Dispatch<SetStateAction<null | ItemFormPopupProps>>;
}

Properties

children?: ReactNode
item?: Item
layer: LayerProps
position: LatLng
setItemFormPopup?: Dispatch<SetStateAction<null | ItemFormPopupProps>>