-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added default exports for all components
- Loading branch information
1 parent
327aaf7
commit 4c7d464
Showing
2 changed files
with
19 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
export { default as Input } from "./components/input/Input"; | ||
export { default as Dropdown} from "./components/dropdown/Dropdown" | ||
export { default as ButtonGroup} from "./components/button-group/ButtonGroup" | ||
export { default as Alert} from "./components/alert/Alert" | ||
export { default as Badge} from "./components/badge/Badge" | ||
export { default as Button} from "./components/button/Button" | ||
export { default as Alert} from "./components/alert/Alert" | ||
export { default as ButtonGroup} from "./components/button-group/ButtonGroup" | ||
export { default as Card} from "./components/card/Card" | ||
export { default as Col} from "./components/col/Col" | ||
export { default as Container} from "./components/container/Container" | ||
export { default as Dropdown} from "./components/dropdown/Dropdown" | ||
export { default as Text} from "./components/FontSizes/Text" | ||
export { default as Input } from "./components/input/Input"; | ||
export { default as ListGroup} from "./components/list-group/ListGroup" | ||
export { default as Menu} from "./components/menu/Menu" | ||
export { default as Popover} from "./components/popover/Popover" | ||
export { default as Quote} from "./components/quote/Quote" | ||
export { default as Row} from "./components/row/Row" | ||
export { default as Tooltip} from "./components/tooltip/Tooltip" |