Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1x 1x | import { formikField, reduxFormField } from '../utils';
import * as styles from './styles';
import { Select as _Select, Select as _SelectField } from './Select';
export * from './Select';
export const Select = Object.assign(_Select, {
Formik: formikField(_Select),
ReduxForm: reduxFormField(_Select)
});
export const SelectField = Object.assign(_SelectField, {
Formik: formikField(_SelectField, { hasFieldWrapper: true }),
ReduxForm: reduxFormField(_SelectField, { hasFieldWrapper: true })
});
export { styles as selectStyles };
|