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.
37 lines (33 loc) • 1.26 kB
JavaScript
// ** MUI Imports
import Grid from '@mui/material/Grid'
import Typography from '@mui/material/Typography'
// ** Demo Components Imports
import StepperAlternativeLabel from '~/views/forms/form-wizard/StepperAlternativeLabel'
import StepperVerticalWithNumbers from '~/views/forms/form-wizard/StepperVerticalWithNumbers'
import StepperLinearWithValidation from '~/views/forms/form-wizard/StepperLinearWithValidation'
import StepperVerticalWithoutNumbers from '~/views/forms/form-wizard/StepperVerticalWithoutNumbers'
const FormWizard = () => {
return (
<Grid container spacing={6}>
<Grid item xs={12}>
<Typography variant='h6'>Linear Stepper with Validation</Typography>
</Grid>
<Grid item xs={12}>
<StepperLinearWithValidation />
</Grid>
<Grid item xs={12} sx={{ pt: theme => `${theme.spacing(8)} !important` }}>
<Typography variant='h6'>Alternative Label</Typography>
</Grid>
<Grid item xs={12}>
<StepperAlternativeLabel />
</Grid>
<Grid item xs={12}>
<StepperVerticalWithNumbers />
</Grid>
<Grid item xs={12}>
<StepperVerticalWithoutNumbers />
</Grid>
</Grid>
)
}
export default FormWizard