Source: lern-layouts/exporter.js

  1. import Layout from './Layout.jsx';
  2. import Bar from './Bar.jsx';
  3. import Screen from './mixins/Screen.jsx';
  4. import NotFound from './NotFound.jsx';
  5. import Setup from './Setup.jsx';
  6. /**
  7. * lern-layouts
  8. * @namespace
  9. */
  10. const LernLayouts = true;
  11. /**
  12. * @namespace Components
  13. * @memberof LernLayouts
  14. */
  15. const Components = true;
  16. /**
  17. * @namespace Mixins
  18. * @memberof LernLayouts
  19. */
  20. const Mixins = true;
  21. /**
  22. * @memberof LernLayouts
  23. * @desc Self description - Layout default Components and Mixins
  24. * @return {Object} Components(Bar and NotFound) and Mixins(Screen)
  25. */
  26. Layout = Layout;
  27. Layout.Bar = Bar;
  28. Layout.Screen = Screen;
  29. Layout.NotFound = NotFound;
  30. export { Layout, Setup, Bar, Screen, NotFound };