Files
cypress/system-tests/projects/angular-cli-configured/src/app/app.component.ts
2022-07-28 11:14:37 -05:00

11 lines
219 B
TypeScript

import { Component } from '@angular/core'
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
})
export class AppComponent {
title = 'angular-cli-app';
}