forked from onap-sdc/onap-ui-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
76 lines (74 loc) · 2.08 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import Accordion from './lib/components/Accordion.js';
import Button from './lib/components/Button.js';
import Checkbox from './lib/components/Checkbox.js';
import Checklist from './lib/components/Checklist.js';
import Input from './lib/components/Input.js';
import Modal from './lib/components/Modal.js';
import ModalBody from './lib/components/ModalBody.js';
import ModalFooter from './lib/components/ModalFooter.js';
import ModalHeader from './lib/components/ModalHeader.js';
import ModalTitle from './lib/components/ModalTitle.js';
import Notification from './lib/components/Notification.js';
import Panel from './lib/components/Panel.js';
import PopupMenu from './lib/components/PopupMenu.js';
import Portal from './lib/components/Portal.js';
import Radio from './lib/components/Radio.js';
import RadioGroup from './lib/components/RadioGroup.js';
import SVGIcon from './lib/components/SVGIcon.js';
import Tab from './lib/components/Tab.js';
import Tabs from './lib/components/Tabs.js';
import Tile from './lib/components/Tile.js';
import TileInfo from './lib/components/TileInfo.js';
import TileInfoLine from './lib/components/TileInfoLine.js';
import TileFooter from './lib/components/TileFooter.js';
import TileFooterCell from './lib/components/TileFooterCell.js';
export { Accordion };
export { Button };
export { Checkbox };
export { Checklist };
export { Input };
export { Modal };
export { ModalBody };
export { ModalFooter };
export { ModalHeader };
export { ModalTitle };
export { Notification };
export { Panel };
export { PopupMenu };
export { Portal };
export { Radio };
export { RadioGroup };
export { SVGIcon };
export { Tab };
export { Tabs };
export { Tile };
export { TileInfo };
export { TileInfoLine };
export { TileFooter };
export { TileFooterCell };
export default {
Accordion,
Button,
Checkbox,
Checklist,
Input,
Modal,
ModalBody,
ModalFooter,
ModalHeader,
ModalTitle,
Notification,
Panel,
PopupMenu,
Portal,
Radio,
RadioGroup,
SVGIcon,
Tab,
Tabs,
Tile,
TileInfo,
TileInfoLine,
TileFooter,
TileFooterCell
};