Reorganize React project structure.

Whatever I was doing was getting out of control :)
This commit is contained in:
Dan Albert
2022-03-01 00:48:08 -08:00
parent 406a64ae3f
commit 6ff9208d46
19 changed files with 67 additions and 66 deletions

View File

@@ -1,12 +1,12 @@
import { Action, ThunkAction, configureStore } from "@reduxjs/toolkit";
import atoReducer from "../game/ato/atoSlice";
import theaterReducer from "../game/theater/theaterSlice";
import controlPointsReducer from "../api/controlPointsSlice";
import flightsReducer from "../api/flightsSlice";
export const store = configureStore({
reducer: {
atos: atoReducer,
theater: theaterReducer,
flights: flightsReducer,
controlPoints: controlPointsReducer,
},
});