Draw flight plan paths in the react UI.

https://github.com/dcs-liberation/dcs_liberation/issues/2039
This commit is contained in:
Dan Albert
2022-03-01 00:08:34 -08:00
parent bd8aa0296b
commit 406a64ae3f
12 changed files with 183 additions and 18 deletions

View File

@@ -1,8 +1,11 @@
import { configureStore, ThunkAction, Action } from "@reduxjs/toolkit";
import { Action, ThunkAction, configureStore } from "@reduxjs/toolkit";
import atoReducer from "../game/ato/atoSlice";
import theaterReducer from "../game/theater/theaterSlice";
export const store = configureStore({
reducer: {
atos: atoReducer,
theater: theaterReducer,
},
});