An easy-to-use platform for EEG experimentation in the classroom
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 16 lines 429 B view raw
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});