Initial OpenECOMP Portal commit
[portal.git] / ecomp-portal-FE / client / bower_components / angular-cache / build_examples / webpack_es6 / app.js
diff --git a/ecomp-portal-FE/client/bower_components/angular-cache/build_examples/webpack_es6/app.js b/ecomp-portal-FE/client/bower_components/angular-cache/build_examples/webpack_es6/app.js
new file mode 100644 (file)
index 0000000..78a3d25
--- /dev/null
@@ -0,0 +1,8 @@
+import angular from 'angular';
+import angularCacheModuleName from 'angular-cache';
+
+let app = angular.module('app', [
+  angularCacheModuleName
+]).run($rootScope => {
+  $rootScope.test = 'It works, imported ' + angularCacheModuleName;
+});