You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/js/reducers/WalletReducer.js

28 lines
497 B

/* @flow */
'use strict';
import { ON_RESIZE, TOGGLE_DEVICE_DROPDOWN, RESIZE_CONTAINER } from '../actions/AppActions';
import * as WEB3 from '../actions/constants/Web3';
const WIDTH: number = 1080;
const HEIGHT: number = 1920;
type State = {
network: string;
device: string;
}
const initialState: Object = {
};
export default function wallet(state: Object = initialState, action: Object): any {
switch(action.type) {
default:
return state;
}
}