{(function MyComponent() { const responsiveValue = useResponsiveValue() return ( <Stack space="medium"> <Text> Screen size:{" "} <Strong> {responsiveValue({ mobile: "Small", desktop: "Large", }) || "Loading..."} </Strong> </Text> </Stack> ) })()}
const responsiveValue = useResponsiveValue() const isMobile = responsiveValue({ mobile: true, tablet: false, }) const isDesktopOrAbove = responsiveValue({ mobile: false, desktop: true, })