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