added header

This commit is contained in:
Janis Meister
2022-01-12 11:44:03 +01:00
parent 0e26454834
commit e6f3a86aeb
9 changed files with 527 additions and 508 deletions

View File

@@ -1,10 +1,17 @@
import { Component } from '@angular/core';
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'ts-streetmap';
export class AppComponent implements OnInit{
title = 'Street Map';
ngOnInit(): void {
}
}