You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
301 B
13 lines
301 B
10 months ago
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-classic-choices',
|
||
|
templateUrl: './classic-choices.component.html',
|
||
|
styleUrls: ['./classic-choices.component.scss'],
|
||
|
})
|
||
|
export class ClassicChoicesComponent implements OnInit {
|
||
|
constructor() {}
|
||
|
|
||
|
ngOnInit(): void {}
|
||
|
}
|