website/src/app/app.component.ts

8 lines
147 B
TypeScript
Raw Normal View History

import {Component} from '@angular/core';
2018-06-24 21:11:31 -04:00
@Component({
selector: 'app-root',
2018-07-03 10:10:47 -04:00
templateUrl: 'app.component.html'
2018-06-24 21:11:31 -04:00
})
2018-07-03 10:10:47 -04:00
export class AppComponent {}