import the NgxNiceLoadingModule inside the desired module:
import { NgxNiceLoadingModule } from 'ngx-nice-loading';
@NgModule({
declarations: [],
imports: [CommonModule, NgxNiceLoadingModule],
exports: [],
})
export class AppModule {}
and finally import below code in the template file:
<ngx-nice-loading></ngx-nice-loading>