import { SelectInput } from '@applica-software-guru/react-admin';

function YesOrNoSelectInput(props) {
  return (
    <SelectInput
      {...props}
      display="legend"
      emptyText={'ra.boolean.null'}
      choices={[
        { id: true, name: 'ra.yes' },
        { id: false, name: 'ra.no' }
      ]}
    />
  );
}

export { YesOrNoSelectInput };
