10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-college-selection',
|
||
|
templateUrl: './college-selection.html',
|
||
|
styleUrl: './college-selection.scss',
|
||
|
imports: [],
|
||
|
})
|
||
|
export class CollegeSelection {}
|