getSotreState => getStoreState
This commit is contained in:
Xaviju 2019-03-04 16:04:29 +01:00 committed by GitHub
parent a6ee35b17e
commit 77160bbf35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ import { Component } from '@angular/core';
@Component({
selector: 'storybook-comp-with-store',
template: '<div>{{this.getSotreState()}}</div>',
template: '<div>{{this.getStoreState()}}</div>',
})
class WithStoreComponent {
private store: Store<any>;
@ -13,7 +13,7 @@ class WithStoreComponent {
this.store = store;
}
getSotreState() {
getStoreState() {
return this.store === undefined ? 'Store is NOT injected' : 'Store is injected';
}
}