diff --git a/Frontend/src/app/app.component.html b/Frontend/src/app/app.component.html index fdb26fb..bbf1787 100644 --- a/Frontend/src/app/app.component.html +++ b/Frontend/src/app/app.component.html @@ -330,7 +330,9 @@ - {{ title }} app is running! + {{ title }} app is running! +
Blog +
diff --git a/Frontend/src/app/app.module.ts b/Frontend/src/app/app.module.ts index ac7911e..aba9412 100644 --- a/Frontend/src/app/app.module.ts +++ b/Frontend/src/app/app.module.ts @@ -3,11 +3,13 @@ import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { HelloWorldComponent } from './hello-world/hello-world.component'; +import { TestComponent } from './test/test.component'; @NgModule({ declarations: [ AppComponent, - HelloWorldComponent + HelloWorldComponent, + TestComponent ], imports: [ BrowserModule diff --git a/Frontend/src/app/hello-world/hello-world.component.html b/Frontend/src/app/hello-world/hello-world.component.html index 589144d..819da90 100644 --- a/Frontend/src/app/hello-world/hello-world.component.html +++ b/Frontend/src/app/hello-world/hello-world.component.html @@ -1 +1,2 @@

hello-world works!

+Blog