We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8045097 commit 448e5aeCopy full SHA for 448e5ae
docs/examples/simple.jsx
@@ -2,4 +2,15 @@ import React from 'react';
2
import Pagination from 'rc-pagination';
3
import '../../assets/index.less';
4
5
-export default () => <Pagination simple defaultCurrent={1} total={50} />;
+export default () => (
6
+ <>
7
+ <Pagination simple defaultCurrent={1} total={50} />
8
+ <br />
9
+ <Pagination
10
+ simple
11
+ defaultCurrent={1}
12
+ total={50}
13
+ showTotal={(total) => `Total ${total} items`}
14
+ />
15
+ </>
16
+);
0 commit comments