Building a web application with Spring Boot and Angular (#6496)
* Initial Commit * Delete angularclient folder * Add spring-boot-angular module to root pom.xml * Update pom.xml * Update root pom.xml * Update root pom.xml
This commit is contained in:
committed by
KevinGilmore
parent
6cd8c51b4d
commit
b10782f89e
15
spring-boot-angular/angularclient/src/app/app.component.ts
Normal file
15
spring-boot-angular/angularclient/src/app/app.component.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
templateUrl: './app.component.html',
|
||||
styleUrls: ['./app.component.css']
|
||||
})
|
||||
export class AppComponent {
|
||||
|
||||
title: string;
|
||||
|
||||
constructor() {
|
||||
this.title = 'Spring Boot - Angular Application';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user