1.0.0-beta.4 • Published 2 years ago

@thorgate/spa-pagination v1.0.0-beta.4

Weekly downloads
68
License
MIT
Repository
github
Last release
2 years ago

@thorgate/spa-pagination

Pagination helper for storing queries to fetch next batch of results.

Basic Usage

import { Pagination } from '@thorgate/spa-pagination';

const MyConnectedComponent = ({ fetchSomething }) => (
    <Pagination
        name="something"
        trigger={fetchSomething}
        render={({ loadNext }) => (
            <button onClick={loadNext} />
        )}
    />
);