Pagination
…
Page 3 of 12
Usage
import { signal } from "./index.js";
import { Pagination } from "./components/pagination.js";
const page = signal(3);
// windowed numbers with ‹ › and ellipsis; totalPages is a number or getter.
Pagination({ page, totalPages: 12, onChange: (p) => console.log(p) })