Skip to content

Instantly share code, notes, and snippets.

@marekrozmus
Created February 18, 2024 17:23
Show Gist options
  • Save marekrozmus/2effd1bd66508776e6729128bb8be2e5 to your computer and use it in GitHub Desktop.
Save marekrozmus/2effd1bd66508776e6729128bb8be2e5 to your computer and use it in GitHub Desktop.
Responsive background react component usage
const mainDivRef = React.useRef<HTMLDivElement>(null);
...
<div
ref={mainDivRef}
className="
bg-no-repeat
bg-contain
bg-center
h-48 w-96">
<BackgroundSet
parentRef={mainDivRef}
mobileImageSrc={mobileBackground}
tabletImageSrc={tabletBackground}
desktopImageSrc={desktopBackground}
/>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment