fix export for exposed files

This commit is contained in:
Rodrigo Antinarelli 2020-03-24 15:43:48 -03:00 committed by James A. Petts
parent 95023d6247
commit bf2c731807

View File

@ -1,7 +1,34 @@
/** UTILS */
import * as utils from './src/utils/';
export * from './src/components';
export { utils };
/** CONTEXT/HOOKS */
export {
ModalProvider,
ModalConsumer,
useModal,
withModal,
} from './src/contextProviders';
/** COMPONENTS */
export {
Button,
ButtonGroup,
DateRange,
Icon,
IconButton,
Select,
Svg,
Input,
ThemeWrapper,
Table,
TableBody,
TableHead,
TableRow,
TableCell,
Typography,
} from './src/components';
/** VIEWS */
export { StudyList } from './src/views';
export { ModalProvider, ModalConsumer, useModal, withModal, utils };