/**
* @ngdoc dashboard
* @name Dashboard
* @module s4c.components.dashboard.Dashboard
*
* @description Configura a rota para o componente de dashboard
*
*
*/
(function () {
'use strict';
angular.module('s4CApp')
.config(['$stateProvider', function ($stateProvider) {
$stateProvider
.state('dashboard', {
url: '/dashboard',
templateUrl: 'app/components/dashboard/dashboard.html',
controller: 'DashboardCtrl'
});
}]);
}());