/
githubmirror
/
ydb-embedded-ui
Обзор
Документация
Войти
/
githubmirror
/
ydb-embedded-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/store/defaultStore.ts
7 строк
242 B
Valerii Sidorenko
feat: use rtk to init store and add typed dispatch (#749)
11 мар 2024, 14:13
Не верифицирован
11 мар 2024, 14:13
323cb6b
Код
Авторство
О чём код?
import {configureStore} from './configureStore'; export const {store, history} = configureStore(); export type GetState = typeof store.getState; export type RootState = ReturnType<GetState>; export type AppDispatch = typeof store.dispatch;