Skip to content

Commit 6854556

Browse files
authored
refactor(app.module): Remove CommonModule by default
1 parent 025cb05 commit 6854556

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app/app.module.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
import { NgModule } from '@angular/core';
22
import { BrowserModule } from '@angular/platform-browser';
3-
import { CommonModule } from '@angular/common';
43

54
import { AppComponent } from './app.component';
65

76
@NgModule({
87
imports: [
9-
BrowserModule,
10-
CommonModule
8+
BrowserModule
119
],
1210
bootstrap: [
1311
AppComponent

0 commit comments

Comments
 (0)