I am following an Angular Tutorial HERE.
On Imports, we bring in the following:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms'
In the @NgModule, we only import BrowserModule & FormsModule.
imports: [
BrowserModule,
FormsModule
],
Why dont we import in the NgModel? Is this becuase its a part of the Angular Core Library?