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.

14 lines (11 loc) 315 B
// ** MUI Imports import Pagination from '@mui/material/Pagination' const PaginationRounded = () => { return ( <div className='demo-space-y'> <Pagination count={10} shape='rounded' /> <Pagination count={10} variant='outlined' shape='rounded' /> </div> ) } export default PaginationRounded