mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2025-07-11 20:53:14 -07:00
9 lines
218 B
JavaScript
9 lines
218 B
JavaScript
export const SETWINDOWINNERHEIGHT = "SETWINDOWINNERHEIGHT";
|
|
|
|
export const innerWindowHeightAction = (windowInnerHeight) => {
|
|
return {
|
|
type: SETWINDOWINNERHEIGHT,
|
|
windowInnerHeight: windowInnerHeight,
|
|
};
|
|
};
|