Skip to content

Commit 4ad4f59

Browse files
kamilkisieladotansimha
authored andcommitted
Step 1.8: Add App component to App module
1 parent 0b31cce commit 4ad4f59

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

client/imports/app/app.module.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
import { NgModule } from '@angular/core';
22
import { BrowserModule } from '@angular/platform-browser';
33

4+
import { AppComponent } from './app.component';
5+
46
@NgModule({
57
imports: [
68
BrowserModule
9+
],
10+
declarations: [
11+
AppComponent
12+
],
13+
bootstrap: [
14+
AppComponent
715
]
816
})
917
export class AppModule {}

0 commit comments

Comments
 (0)