@dr.pogodin/react-utils
Version:
Collection of generic ReactJS components and utils
21 lines (16 loc) • 830 B
text/typescript
/**
* Just an aggregation of all exported components into a single module.
*/
export { MetaTags } from '@dr.pogodin/react-helmet';
export * from 'components/selectors';
export { default as Button, BaseButton } from 'components/Button';
export { default as Checkbox } from 'components/Checkbox';
export { default as Input } from 'components/Input';
export { default as Link } from 'components/Link';
export { default as PageLayout } from 'components/PageLayout';
export { default as Modal, BaseModal } from 'components/Modal';
export { default as NavLink } from 'components/NavLink';
export { default as Throbber } from 'components/Throbber';
export { default as WithTooltip } from 'components/WithTooltip';
export { default as YouTubeVideo } from 'components/YouTubeVideo';
export { default as TextArea } from './TextArea';