mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-04 13:52:38 +00:00
28 lines
497 B
JavaScript
28 lines
497 B
JavaScript
/* @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;
|
|
}
|
|
}
|