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) 328 B
// ** MUI Imports import Pagination from '@mui/material/Pagination' const PaginationSimple = () => { return ( <div className='demo-space-y'> <Pagination count={10} /> <Pagination count={10} color='primary' /> <Pagination count={10} color='secondary' /> </div> ) } export default PaginationSimple