/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v30.2.0
examples/angular/app.component.ts
14 строк
323 B
Tom Mrazauskas
chore: remove lint exceptions for files in `examples` folder (#13346)
01 окт 2022, 10:01
Не верифицирован
01 окт 2022, 10:01
c6b812d
Код
Авторство
О чём код?
import {Component} from '@angular/core'; import {DataService} from './shared/data.service'; @Component({ selector: 'app-root', template: '<h1>Welcome to {{ title }}!</h1>', }) export class AppComponent { public title: string; constructor(dataService: DataService) { this.title = dataService.getTitle(); } }