mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-22 07:40:32 +00:00
25 lines
504 B
JavaScript
25 lines
504 B
JavaScript
import {
|
|
FormGroup,
|
|
InputGroup,
|
|
NumericInput,
|
|
Checkbox,
|
|
RadioGroup,
|
|
Switch,
|
|
EditableText,
|
|
TextArea,
|
|
} from '@blueprintjs-formik/core';
|
|
import { Select, MultiSelect } from '@blueprintjs-formik/select';
|
|
|
|
export {
|
|
FormGroup as FFormGroup,
|
|
InputGroup as FInputGroup,
|
|
NumericInput as FNumericInput,
|
|
Checkbox as FCheckbox,
|
|
RadioGroup as FRadioGroup,
|
|
Switch as FSwitch,
|
|
Select as FSelect,
|
|
MultiSelect as FMultiSelect,
|
|
EditableText as FEditableText,
|
|
TextArea as FTextArea,
|
|
};
|