mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 21:35:50 +00:00
15 lines
272 B
TypeScript
15 lines
272 B
TypeScript
|
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-options',
|
||
|
|
templateUrl: './options.component.html',
|
||
|
|
styleUrls: ['./options.component.scss'],
|
||
|
|
})
|
||
|
|
export class OptionsComponent implements OnInit {
|
||
|
|
|
||
|
|
constructor() { }
|
||
|
|
|
||
|
|
ngOnInit() {}
|
||
|
|
|
||
|
|
}
|