mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2025-07-01 17:13:10 -07:00
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
export const SETWINDOWINNERWIDTH = "SETWINDOWINNERWIDTH";
|
|
|
|
export const innerWindowWidthAction = (windowInnerWidth) => {
|
|
return {
|
|
type: SETWINDOWINNERWIDTH,
|
|
windowInnerWidth: windowInnerWidth,
|
|
};
|
|
};
|