commit | 9f87f3097125342817f376872aea1d16ad003964 | [log] [tgz] |
---|---|---|
author | Matteo Scandolo <matteo.scandolo@gmail.com> | Tue Dec 13 18:11:10 2016 -0800 |
committer | Matteo Scandolo <matteo.scandolo@gmail.com> | Wed Dec 14 09:04:55 2016 -0800 |
tree | e835837d9878afc26f035a739db8e6a8fc839445 | |
parent | f6acdbe7966c62ca03aa40a24b25189ebcdde681 [diff] [blame] |
Created first CRUD view Change-Id: I3e7f3f36896921cce671c6a53e0155de9165eeb3
diff --git a/src/app/views/index.ts b/src/app/views/index.ts new file mode 100644 index 0000000..495e2a4 --- /dev/null +++ b/src/app/views/index.ts
@@ -0,0 +1,8 @@ +import {xosCore} from '../core/index'; +import {xosCrud} from './crud/crud'; + +export const xosViews = 'xosViews'; + +angular + .module('xosViews', [xosCore]) + .component('xosCrud', xosCrud);