UNPKG

react-garden

Version:

React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.

15 lines (12 loc) 318 B
// ** MUI Imports import Pagination from '@mui/material/Pagination' const PaginationSizes = () => { return ( <div className='demo-space-y'> <Pagination count={10} size='small' /> <Pagination count={10} /> <Pagination count={10} size='large' /> </div> ) } export default PaginationSizes