├── public ├── robots.txt ├── favicon.ico ├── logo192.png ├── logo512.png ├── manifest.json └── index.html ├── src ├── App.js ├── index.js └── components │ └── UserList.js ├── .gitignore ├── package.json └── README.md /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfikricom/React-Pagination-Frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfikricom/React-Pagination-Frontend/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfikricom/React-Pagination-Frontend/HEAD/public/logo512.png -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import UserList from "./components/UserList"; 2 | 3 | function App() { 4 | return ( 5 |
| ID | 73 |Name | 74 |Gender | 76 ||
|---|---|---|---|
| {user.id} | 82 |{user.name} | 83 |{user.email} | 84 |{user.gender} | 85 |
90 | Total Rows: {rows} Page: {rows ? page + 1 : 0} of {pages} 91 |
92 |{msg}
93 | 112 |