Skip to content

Commit

Permalink
feat(Checkbox Group): Exporting
Browse files Browse the repository at this point in the history
  • Loading branch information
ddsilva committed Apr 9, 2019
1 parent 00e683b commit 152022c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion components/Checkbox/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Checkbox from './Checkbox';
import CheckboxGroup from './CheckboxGroup';

export default Checkbox;
export { Checkbox, CheckboxGroup };
3 changes: 2 additions & 1 deletion components/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Form, Validations } from './Form';
import { TabbedView, Tab } from './TabbedView';
import Badge from './Badge';
import Button from './Button';
import Checkbox from './Checkbox';
import { Checkbox, CheckboxGroup } from './Checkbox';
import Colors from './Colors';
import Dropdown from './Dropdown';
import GlobalStyle, { Typography, IconFont } from './GlobalStyle';
Expand All @@ -25,6 +25,7 @@ export {
BREAKPOINTS,
Button,
Checkbox,
CheckboxGroup,
Col,
Colors,
Container,
Expand Down
4 changes: 1 addition & 3 deletions stories/Checkbox/Checkbox.story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ import {
TabbedView,
Title,
} from '@catho/quantum-storybook-ui';
import Checkbox from '../../components/Checkbox';
import CheckboxGroup from '../../components/Checkbox/CheckboxGroup';
import { Col, Row } from '../../components/Grid';
import { Checkbox, CheckboxGroup, Col, Row } from '../../components';
import groupExamples from './sub-components/groupExamples';

const CheckboxGroupExample = ({ code, component }) => (
Expand Down

0 comments on commit 152022c

Please sign in to comment.