mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-07 06:59:49 -06:00
11 lines
219 B
TypeScript
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';
|
|
}
|