I'm trying to use Locomotive Scroll with React 17. I don't know how to setup the component correctly for it to work. All examples I find are for older versions of React, that I don't understand.
Does anyone know how to get this to work?
I'm thinking it should look something like this:
import React from "react"
import LocomotiveScroll from "locomotive-scroll"
const ComponentName = () => {
//some code here
return (
<div data-scroll-container>
<section data-scroll-section>
<h1 data-scroll>Hey, there!</h1>
<p
role="img"
aria-label=""
data-scroll
data-scroll-direction="horizontal"
data-scroll-speed="3"
>
</p>
</section>
<section data-scroll-section>
<h2 data-scroll data-scroll-speed="1">
What's up?
</h2>
<p data-scroll role="img" aria-label="">
</p>
</section>
</div>
);
}
export default ComponentName