An easy-to-use platform for EEG experimentation in the classroom
1import { combineReducers } from 'redux';
2import pyodide, { PyodideStateType } from './pyodideReducer';
3import device, { DeviceStateType } from './deviceReducer';
4import experiment, { ExperimentStateType } from './experimentReducer';
5
6export interface RootState {
7 pyodide: PyodideStateType;
8 device: DeviceStateType;
9 experiment: ExperimentStateType;
10}
11
12export default combineReducers({
13 pyodide,
14 device,
15 experiment,
16});