angular-docs-cn/angular.io/src/app/app.component.ts

11 lines
216 B
TypeScript
Raw Normal View History

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