13 lines
281 B
TypeScript
13 lines
281 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'odds-crawler-network-option',
|
|
templateUrl: './option.component.html',
|
|
styleUrls: ['./option.component.scss']
|
|
})
|
|
export class OptionComponent implements OnInit {
|
|
constructor() {}
|
|
|
|
ngOnInit() {}
|
|
}
|