add eqlair project
This commit is contained in:
parent
55489a049a
commit
51b48fb3ba
35 changed files with 10791 additions and 0 deletions
20
eqlair/src/app/app.routes.ts
Normal file
20
eqlair/src/app/app.routes.ts
Normal file
|
@ -0,0 +1,20 @@
|
|||
import {Routes} from '@angular/router';
|
||||
import {Home} from './pages/home/home';
|
||||
import {Results} from './pages/results/results';
|
||||
|
||||
export const routes: Routes = [
|
||||
|
||||
{
|
||||
path: 'home',
|
||||
component: Home
|
||||
},
|
||||
{
|
||||
path: 'answer',
|
||||
component: Results
|
||||
},
|
||||
{
|
||||
path: '',
|
||||
component: Home
|
||||
},
|
||||
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue