Adding college selection component

This commit is contained in:
Z. Charles Dziura 2025-07-01 18:46:00 -04:00
parent d13bfbbd25
commit 9c34be0bb5
4 changed files with 13 additions and 0 deletions

View file

@ -3,6 +3,9 @@
@case ('startingPoint') {
<app-starting-point></app-starting-point>
}
@case ('collegeSelection') {
<app-college-selection></app-college-selection>
}
@default {
<app-starting-point></app-starting-point>
}

View file

@ -0,0 +1 @@
<p>college-selection works!</p>

View 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 {}