All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.form.fields.InputMultipleSelectField.js Maven / Gradle / Ivy

import InputSelectField              from "components/form/fields/InputSelectField";
import InputMultipleSelectFieldLocal from "components/form/fields/InputMultipleSelectFieldLocal";
import { useFieldInfo }              from "hooks/field";

const InputMultipleSelectField = (props) => {
  const { info } = useFieldInfo()

  if (info.numOptions < 100 && !info.isDepending)
    return 
  else
    return 
}

export default InputMultipleSelectField




© 2015 - 2024 Weber Informatics LLC | Privacy Policy