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.

25 lines (20 loc) 623 B
// ** MUI Imports import Grid from '@mui/material/Grid' // ** Demo Components Imports import MUIPickers from '~/views/forms/form-elements/pickers/mui-pickers' import ReactDatePicker from '~/views/forms/form-elements/pickers/react-datepicker' // ** Third Party Styles Imports // import 'react-datepicker/dist/react-datepicker.css' const Pickers = () => { return ( <Grid container spacing={6} className='match-height'> <Grid item xs={12}> <MUIPickers /> </Grid> <Grid item xs={12}> <ReactDatePicker /> </Grid> </Grid> ) } export default Pickers