0.2.0 • Published 1 year ago
react-hook-scroll v0.2.0
React-Hook-Scroll ·

React-Hook-Scroll" is a scroll UI library that can be used in React projects. It is designed to be compatible with both desktop and mobile environments.
Install
npm i react-hook-scroll
Example
1. VirtualScroll
import { useState } from "react";
import { VirtualScroll } from "react-hook-scroll";
function App() {
const [selected, setSelected] = useState(null);
return (
<>
<VirtualScroll list={[1, 2, 3, 4, 5]} onItemSelected={setSelected} />
</>
);
}
The VirtualScroll component requires two required profiles.
- list: need a list to let the user choose.
- onItemSelected: The action to be taken with the item selected by the user is required.
2. ScrollToTop
import { ScrollToTop } from "react-hook-scroll";
return (
<>
<ScrollToTop>
<SVG />
</ScrollToTop>
</>
);
Contributing
Development happens in the open on GitHub and we are grateful for contributions including bug fixes, improvements, and ideas.
License
React-Hook-Scroll is MIT licensed.
0.1.15
1 year ago
0.2.0
1 year ago
0.1.16
1 year ago
0.1.17
1 year ago
0.1.18
1 year ago
0.1.19
1 year ago
0.1.14
1 year ago
0.1.13
1 year ago
0.1.10
2 years ago
0.1.11
2 years ago
0.1.12
2 years ago
0.1.9
2 years ago
0.1.8
2 years ago
0.1.7
2 years ago
0.1.2
2 years ago
0.1.1
2 years ago
0.1.4
2 years ago
0.1.3
2 years ago
0.1.6
2 years ago
0.1.5
2 years ago
0.1.0
2 years ago