mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-03 21:32:34 +00:00
11 lines
157 B
JavaScript
11 lines
157 B
JavaScript
/* @flow */
|
|
'use strict';
|
|
|
|
export const ON_RESIZE: string = 'ON_RESIZE';
|
|
|
|
export const onResize = (): void => {
|
|
return {
|
|
type: ON_RESIZE
|
|
}
|
|
}
|