sampahgit

Results 2 comments of sampahgit

> ``` > initialPage={1} > ``` > > Just tell `react-paginate` current page is 1, but actually select 2 > > ![image](https://user-images.githubusercontent.com/3938751/30801013-73df0c60-a214-11e7-97a5-ebcc491e4089.png)

- const [page, setPage] = useState(1); const changePage = ({ selected }) => { setPage(selected + 1); };