We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 979adbe commit 9f92071Copy full SHA for 9f92071
web/src/pages/Home/Header.tsx
@@ -14,7 +14,7 @@ const Header = () => {
14
const breakpointIsBig = width > BREAKPOINT_SMALL_SCREEN;
15
return (
16
<div ref={ref}>
17
- {breakpointIsBig ? <HeaderDesktop themeIsLight={themeIsLight} /> : <HeaderMobile themeIsLight={themeIsLight} />}
+ {breakpointIsBig ? <HeaderDesktop {...{ themeIsLight }} /> : <HeaderMobile {...{ themeIsLight }} />}
18
</div>
19
);
20
};
0 commit comments