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.