This is my story decorators configuration. This is the error that I am seeing: NG0304: 'ion-button' is not a known element
The story is being recognized, but it is not displaying--when I inspect, I get the error mentioned above.
providers: [importProvidersFrom([IonicModule.forRoot(
{
backButtonText: '',
backButtonIcon: 'chevron-back-outline',
animated: true,
rippleEffect: true,
mode: 'md',
}
)])],
}),
moduleMetadata({
declarations: [BackButtonComponent],
imports: [ComponentsModule, AppModule],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
}),```