1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1× 1× 1× 1× | import CommentBox from './CommentBox/CommentBox' import NavBar from './NavBar/NavBar' import Utils from './Utils/Utils' /** * This is an index file for all components. * Usage: we can have one line to import multiple components, e.g.: import { PxPopover, PxUtils } from './components' * @type {Object} */ module.exports = { CommentBox, NavBar, Utils } |