happypack
Version:
webpack speed booster, makes you happy!
14 lines (12 loc) • 428 B
JavaScript
/**
* Point of contact for component modules
*
* ie: import { CounterButton, InfoBar } from 'components';
*
*/
export CounterButton from './CounterButton/CounterButton';
export GithubButton from './GithubButton/GithubButton';
export InfoBar from './InfoBar/InfoBar';
export MiniInfoBar from './MiniInfoBar/MiniInfoBar';
export SurveyForm from './SurveyForm/SurveyForm';
export WidgetForm from './WidgetForm/WidgetForm';