blob: fd08421d2304d3bafa6f4ccba853b42bd50cd946 [file] [log] [blame]
Matteo Scandolo91fe03d2016-03-24 15:29:52 -07001/**
2 * © OpenCORD
3 *
4 * Visit http://guide.xosproject.org/devguide/addview/ for more information
5 *
6 * Created by teone on 3/24/16.
7 */
8
9(function () {
10 'use strict';
11
Matteo Scandoloaa683dd2016-04-14 15:34:12 -070012 /**
13 * @ngdoc overview
14 * @name xos.uiComponents
15 * @description A collection of UI components useful for Dashboard development
16 * @requires xos.uiComponents.table
17 **/
18
Matteo Scandolo91fe03d2016-03-24 15:29:52 -070019 angular.module('xos.uiComponents', [
20 'xos.uiComponents.table'
21 ])
22})();