fix: fix typo declaring a let variable (#12)

This commit is contained in:
Aurélio Pita 2021-03-11 21:02:09 +00:00 коммит произвёл GitHub
Родитель 43e8058f65
Коммит 81a399e974
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -47,7 +47,7 @@ this.globalStore = GlobalStore.Get();
### Create/Register Store
```javascript
ler appStore = createStore(AppReducer); // Redux Store
let appStore = createStore(AppReducer); // Redux Store
this.globalStore.RegisterStore("App1", appStore);
this.globalStore.RegisterGlobalActions("App1", ["Action-1", "Action-2"]); // These actions can be dispatched by other apps to this store
```