* 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
16 lines
285 B
TypeScript
16 lines
285 B
TypeScript
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';
|
|
}
|
|
}
|