# material-ui_pagination

> material-ui pagination component

Latest version **1.0.0** (published 2017-07-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install material-ui_pagination
pnpm add material-ui_pagination
yarn add material-ui_pagination
bun add material-ui_pagination
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2017-07-07 |
| First published | 2017-07-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Rachita Bansal |
| Maintainers | rachita |
| Keywords | pagination, material-ui, material-ui-pagination |

## Links

- npm: https://www.npmjs.com/package/material-ui_pagination
- Repository: https://github.com/bansalrachita/material-ui-pagination
- Homepage: https://github.com/bansalrachita/material-ui-pagination#readme
- Issues: https://github.com/bansalrachita/material-ui-pagination/issues
- npm.io page: https://npm.io/package/material-ui_pagination

## Dependencies (4)

- [react](https://npm.io/package/react.md) ^15.6.1
- [react-dom](https://npm.io/package/react-dom.md) ^15.6.1
- [material-ui](https://npm.io/package/material-ui.md) 0.18.6
- [react-scripts](https://npm.io/package/react-scripts.md) 1.0.10

## Alternatives

- [@progress/kendo-ooxml](https://npm.io/package/@progress/kendo-ooxml.md) — 152.1K weekly downloads
- [@progress/kendo-react-ripple](https://npm.io/package/@progress/kendo-react-ripple.md) — 8.0K weekly downloads
- [@progress/kendo-react-orgchart](https://npm.io/package/@progress/kendo-react-orgchart.md) — 4.3K weekly downloads
- [@praxisui/dynamic-fields](https://npm.io/package/@praxisui/dynamic-fields.md) — 2.4K weekly downloads
- [@mesalvo/react-ui](https://npm.io/package/@mesalvo/react-ui.md) — 1.7K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2017-07-07
- 0.1.0 — 2017-07-07

## README

# Material-ui Pagination Component

### Usage
```js
class App extends Component {
    constructor(props) {
        super(props);

        this.state = {
            selectedRowSize: 20
        }
    }

    onChange = (event, index, selectedRowSize) => {
        this.setState({selectedRowSize});
    };

    render() {
        const {selectedRowSize} = this.state;

        return (
            <MuiThemeProvider>
                <div className="App">
                    <Pagination rows={10}
                                rowSizeWidthStyle="10%"
                                selectedRowSize={selectedRowSize}
                                rowSize={[10, 20, 30]}
                                handleRowSizeChange={this.onChange}/>
                </div>
            </MuiThemeProvider>
        );
    }
}

```

---
_Source: https://npm.io/package/material-ui_pagination · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
