moved quiz to folder

This commit is contained in:
Ronaldo
2026-04-06 10:55:32 +00:00
parent 7b9fb34462
commit a315eab0d5
249 changed files with 0 additions and 0 deletions

21
quiz/js/routes.js Executable file
View File

@@ -0,0 +1,21 @@
angular.module('app.routes', [])
.config(function($stateProvider, $urlRouterProvider) {
// Ionic uses AngularUI Router which uses the concept of states
// Learn more here: https://github.com/angular-ui/ui-router
// Set up the various states which the app can be in.
// Each state's controller can be found in controllers.js
$stateProvider
.state('page', {
url: '/page1',
templateUrl: 'templates/page.html',
controller: 'pageCtrl'
})
$urlRouterProvider.otherwise('/page1')
});