1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-03 21:32:34 +00:00
trezor-wallet/src/js/actions/DOMActions.js
Szymon Lesisz 6a9fde9f86 first
2017-12-13 12:01:37 +01:00

11 lines
157 B
JavaScript

/* @flow */
'use strict';
export const ON_RESIZE: string = 'ON_RESIZE';
export const onResize = (): void => {
return {
type: ON_RESIZE
}
}