10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-terms-of-service',
|
||
|
templateUrl: './terms-of-service.component.html'
|
||
|
})
|
||
|
export class TermsOfServiceComponent {
|
||
|
constructor() { }
|
||
|
}
|