Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 1 | import {xosCore} from '../core/index'; |
| 2 | import {xosCrud} from './crud/crud'; |
Matteo Scandolo | d62ea79 | 2016-12-22 14:02:28 -0800 | [diff] [blame] | 3 | import {xosDashboard} from './dashboard/dashboard'; |
Matteo Scandolo | 9f87f30 | 2016-12-13 18:11:10 -0800 | [diff] [blame] | 4 | |
| 5 | export const xosViews = 'xosViews'; |
| 6 | |
| 7 | angular |
| 8 | .module('xosViews', [xosCore]) |
Matteo Scandolo | d62ea79 | 2016-12-22 14:02:28 -0800 | [diff] [blame] | 9 | .component('xosCrud', xosCrud) |
| 10 | .component('xosDashboard', xosDashboard); |