Skip to content

v9.1.0

Compare
Choose a tag to compare
@thebuilder thebuilder released this 25 Apr 12:07
4b6eea0

9.1.0 (2022-04-25)

Features

  • support onChange on useInView (ba8d059)
  const { ref } = useInView({
    onChange: (inView) => {
      if (inView) {
        dataLayer.push('Section shown'); // Here's a GTM dataLayer push
      }
    },
  });