Some lil' delights.

9
  • 10
  • 9
  • 9
import {Lazy} from '@/packages';
// triggers callback when intersecting, useful to display content in a lazy way
<Lazy
forward={false}
cb={(isIntersecting) =>
isIntersecting
? (document.querySelector('body').style.backgroundColor = 'var(--error-000)')
: (document.querySelector('body').style.backgroundColor = 'white')
}
/>

Code snippet hidden

Your screen is too small.