ohif-viewer/platform/ui/index.js
Gustavo André Lelis 056f56f5b4 refactor: StudyListFilter refactor (#1580)
* Creating InputGroup

* Updating Views with new InputGroup

* Creating Docz for InputGroup

* Fixing eslint issues

* Renaming inputGroup props naming to be more generic.
2020-05-15 12:44:33 +01:00

43 lines
663 B
JavaScript

/** UTILS */
import utils from './src/utils';
export { utils };
/** CONTEXT/HOOKS */
export {
ModalProvider,
ModalConsumer,
useModal,
withModal,
} from './src/contextProviders';
/** COMPONENTS */
export {
Button,
ButtonGroup,
DateRange,
EmptyStudies,
Icon,
IconButton,
Input,
InputDateRange,
InputGroup,
InputLabelWrapper,
InputMultiSelect,
InputText,
Label,
NavBar,
Select,
Svg,
Table,
TableBody,
TableCell,
TableHead,
TableRow,
ThemeWrapper,
Typography,
} from './src/components';
/** VIEWS */
export { StudyList } from './src/views';
export { ModalProvider, ModalConsumer, useModal, withModal, utils };