24 lines
		
	
	
	
		
			419 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			419 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {Routes} from '@angular/router';
 | |
| import {Home} from './pages/home/home';
 | |
| import {Results} from './pages/results/results';
 | |
| import {TestingApi} from './pages/testing-api/testing-api';
 | |
| 
 | |
| export const routes: Routes = [
 | |
| 
 | |
|   {
 | |
|     path: 'home',
 | |
|     component: Home
 | |
|   }, {
 | |
|     path: 'api',
 | |
|     component: TestingApi
 | |
|   },
 | |
|   {
 | |
|     path: 'answer',
 | |
|     component: Results
 | |
|   },
 | |
|   {
 | |
|     path: '',
 | |
|     component: Home
 | |
|   },
 | |
| 
 | |
| ];
 | 
