TwoToc code
[YouAndWeb_TwoToc] / client / app / main / main.js
diff --git a/client/app/main/main.js b/client/app/main/main.js
new file mode 100755 (executable)
index 0000000..dd1cddd
--- /dev/null
@@ -0,0 +1,11 @@
+'use strict';
+
+angular.module('dashboardApp')
+  .config(function($stateProvider) {
+    $stateProvider
+      .state('main', {
+        url: '/',
+        templateUrl: 'app/main/main.html',
+        controller: 'MainCtrl'
+      });
+  });