Trying to inject a service in to story book angular.
To call a method in angular service.
render: () => ({ props: { uType: 'secondary',
withDelay: (injector: Injector) => { const myService: NotificationService = injector!.get(NotificationService);
myService.show("Hello"); alert("hello"); }
, }, template: <button uAction [uType]="'secondary'" (click)="withDelay(injector)">Show notification</button>
,}),
I am trying to call a service method on click of with delay function.
How to inject a real service to storybook.