all files / components/ index.js

100% Statements 9/9
100% Branches 4/4
100% Functions 1/1
100% Lines 5/5
1 branch Ignored     
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15                      
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
}