I\'m using Anuglar 6
I have two components account
and profile
. account component is added to the app
This is a big of a vague guess but you probably need to import the NgbModule like so in your app.module.ts
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
@NgModule({
imports: [
NgbModule.forRoot()
]
})
That should then fix the error you're running into.
it's working for me by adding NgbModule at my module file.
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
@NgModule({
imports: [...
NgbModule,
....],
declarations: [],
entryComponents: [...]
})