mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Fix typo
getSotreState => getStoreState
This commit is contained in:
parent
a6ee35b17e
commit
77160bbf35
@ -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';
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user