Function useFeatureView

Custom hook for displaying a feature view modal.

  • Parameters

    • params: IParams

      The parameters for the feature view modal.

    Returns {
        open: boolean;
        pickData: ((param?: any) => void);
        render: (() => Element);
    }

    • The modal hook object.
    • open: boolean
    • pickData: ((param?: any) => void)
        • (param?): void
        • Parameters

          • Optionalparam: any

          Returns void

    • render: (() => Element)
        • (): Element
        • Returns Element