Pagination
Usage
import { Box, Main, Pagination } from '@aragon/ui'
function App() {
const [selected, setSelected] = useState(0)
return (
<Main>
<Box>
<Pagination pages={20} selected={selected} onChange={setSelected} />
</Box>
</Main>
)
}Demonstration

Props
onChange
onChangeTYPE
DEFAULT VALUE
pages
pagesTYPE
DEFAULT VALUE
selected
selectedTYPE
DEFAULT VALUE
touchMode
touchModeTYPE
DEFAULT VALUE
Last updated
Was this helpful?
