springboot-angular-app-demo/src/main/ng-app/src/app/app.component.ts

11 lines
294 B
TypeScript
Raw Normal View History

2020-03-06 15:35:36 +01:00
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
2020-03-09 15:53:35 +01:00
title = 'ng-app created by guide "Building a Web App using Spring Boot and Angular9-CLI with Maven"';
2020-03-06 15:35:36 +01:00
}