const Pagination = ({ currentRefinement, nbPages }) => ( <ul> {new Array(nbPages).fill(null).map((_, index) => { const page = index + 1; const style ...
確定! 回上一頁