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.

HashHistory -> History

+10 -10
+1 -1
app/components/CollectComponent/ConnectModal.tsx
··· 13 13 import { DeviceActions } from '../../actions'; 14 14 15 15 interface Props { 16 - history: HashHistory; 16 + history: History; 17 17 open: boolean; 18 18 onClose: () => void; 19 19 connectedDevice: Record<string, any>;
+1 -1
app/components/CollectComponent/index.tsx
··· 18 18 import { ExperimentActions, DeviceActions } from '../../actions'; 19 19 20 20 export interface Props { 21 - history: HashHistory; 21 + history: History; 22 22 ExperimentActions: typeof ExperimentActions; 23 23 connectedDevice: Record<string, any>; 24 24 deviceType: DEVICES;
+2 -2
app/components/DesignComponent/CustomDesignComponent.tsx
··· 10 10 Table, 11 11 } from 'semantic-ui-react'; 12 12 import { isNil } from 'lodash'; 13 - import { HashHistory } from 'history'; 13 + import { History } from 'history'; 14 14 15 15 import styles from '../styles/common.css'; 16 16 import { EXPERIMENTS, SCREENS } from '../../constants/constants'; ··· 51 51 }; 52 52 53 53 interface Props { 54 - history: HashHistory; 54 + history: History; 55 55 type: EXPERIMENTS | null | undefined; 56 56 title: string; 57 57 params: ExperimentParameters;
+2 -2
app/components/DesignComponent/index.tsx
··· 1 1 import React, { Component } from 'react'; 2 - import { HashHistory } from 'history'; 2 + import { History } from 'history'; 3 3 import { 4 4 Grid, 5 5 Button, ··· 53 53 }; 54 54 55 55 export interface Props { 56 - history: HashHistory; 56 + history: History; 57 57 type: EXPERIMENTS; 58 58 paradigm: EXPERIMENTS; 59 59 title: string;
+2 -2
app/components/EEGExplorationComponent.tsx
··· 7 7 Image, 8 8 Divider, 9 9 } from 'semantic-ui-react'; 10 - import { HashHistory } from 'history'; 10 + import { History } from 'history'; 11 11 import { 12 12 PLOTTING_INTERVAL, 13 13 CONNECTION_STATUS, ··· 22 22 import { DeviceActions } from '../actions'; 23 23 24 24 interface Props { 25 - history: HashHistory; 25 + history: History; 26 26 connectedDevice: Record<string, any>; 27 27 signalQualityObservable: any | null | undefined; 28 28 deviceType: DEVICES;
+2 -2
app/components/HomeComponent/index.tsx
··· 3 3 import { Grid, Button, Header, Segment, Image, Table } from 'semantic-ui-react'; 4 4 import { toast } from 'react-toastify'; 5 5 import * as moment from 'moment'; 6 - import { HashHistory } from 'history'; 6 + import { History } from 'history'; 7 7 import { remote } from 'electron'; 8 8 import styles from '../styles/common.css'; 9 9 import { ··· 50 50 51 51 interface Props { 52 52 kernelStatus: KERNEL_STATUS; 53 - history: HashHistory; 53 + history: History; 54 54 JupyterActions: typeof JupyterActions; 55 55 connectedDevice: Record<string, unknown>; 56 56 signalQualityObservable: any | null | undefined;