mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
15 lines
339 B
TypeScript
15 lines
339 B
TypeScript
import * as React from "react";
|
|
import ReactPaginate = require("react-paginate");
|
|
|
|
class Test extends React.Component<{}, {}> {
|
|
public render() {
|
|
return (
|
|
<ReactPaginate
|
|
pageCount={1}
|
|
pageRangeDisplayed={10}
|
|
marginPagesDisplayed={2}
|
|
/>
|
|
);
|
|
}
|
|
}
|