BoundSelect

BoundSelect binds a MUI Select component to the data object found in the nearest DataObjectProvider. Usage is just like the MUI Input, except you must give a field name in the field property instead of passing value/onChange properties.

API

import { SelectProps } from "@mui/material";
export declare type BoundSelectProps = SelectProps & {
  field: string;
};
export declare function BoundSelect(props: BoundSelectProps): JSX.Element;

Last updated

Was this helpful?