Files
scrutiny/webapp/frontend/src/app/app.component.ts
T
Jason Kulatunga 8482272d45 init
2020-08-19 16:04:21 -07:00

17 lines
267 B
TypeScript

import { Component } from '@angular/core';
@Component({
selector : 'app-root',
templateUrl: './app.component.html',
styleUrls : ['./app.component.scss']
})
export class AppComponent
{
/**
* Constructor
*/
constructor()
{
}
}