I'm trying practice use Ngmodule and imports, so I moved this line: (from heroes.component.ts file) import { Hero } from './hero';
to app.module.ts file:
import { Hero } from './hero';
@NgModule({
imports: [
BrowserModule,
FormsModule,
routing,
Hero
],
but i get this error:
[0] app/heroes.component.ts(20,11): error TS2304: Cannot find name 'Hero'
It's possible to let in the components just the basic import: import { Component, OnInit } from '@angular/core'; and move all the rest imports to NgModule? or have I restrictions?