[タスク 1176: 開発環境コンテナの構築(Client/Server)](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/OMDSDictation/_workitems/edit/1176) 開発用コンテナを構築しました。以下のコンテナを追加しています。 - ライセンス管理 - server - client - ディクテーション管理 - server - client - DB(MySQL) - Cache(Redis)
16 lines
353 B
TypeScript
16 lines
353 B
TypeScript
import { configureStore, ThunkAction, Action } from "@reduxjs/toolkit";
|
|
|
|
export const store = configureStore({
|
|
reducer: {},
|
|
});
|
|
|
|
export type RootState = ReturnType<typeof store.getState>;
|
|
export type AppThunk<ReturnType = void> = ThunkAction<
|
|
ReturnType,
|
|
RootState,
|
|
unknown,
|
|
Action<string>
|
|
>;
|
|
|
|
export type AppDispatch = typeof store.dispatch;
|