18 lines
463 B
JavaScript
18 lines
463 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export function getDimensions(state) {
|
|
return state.device.dimension;
|
|
}
|
|
|
|
export function getConnection(state) {
|
|
return state.device.connection;
|
|
}
|
|
|
|
export function isLandscape(state) {
|
|
return state.device.dimension.deviceWidth > state.device.dimension.deviceHeight;
|
|
}
|
|
|
|
export function isTablet(state) {
|
|
return state.device.isTablet;
|
|
}
|