Adding college selection component
This commit is contained in:
parent
d13bfbbd25
commit
9c34be0bb5
4 changed files with 13 additions and 0 deletions
|
@ -3,6 +3,9 @@
|
||||||
@case ('startingPoint') {
|
@case ('startingPoint') {
|
||||||
<app-starting-point></app-starting-point>
|
<app-starting-point></app-starting-point>
|
||||||
}
|
}
|
||||||
|
@case ('collegeSelection') {
|
||||||
|
<app-college-selection></app-college-selection>
|
||||||
|
}
|
||||||
@default {
|
@default {
|
||||||
<app-starting-point></app-starting-point>
|
<app-starting-point></app-starting-point>
|
||||||
}
|
}
|
||||||
|
|
1
src/app/views/college-selection/college-selection.html
Normal file
1
src/app/views/college-selection/college-selection.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<p>college-selection works!</p>
|
0
src/app/views/college-selection/college-selection.scss
Normal file
0
src/app/views/college-selection/college-selection.scss
Normal file
9
src/app/views/college-selection/college-selection.ts
Normal file
9
src/app/views/college-selection/college-selection.ts
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-college-selection',
|
||||||
|
templateUrl: './college-selection.html',
|
||||||
|
styleUrl: './college-selection.scss',
|
||||||
|
imports: [],
|
||||||
|
})
|
||||||
|
export class CollegeSelection {}
|
Loading…
Add table
Reference in a new issue