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.

17 lines (13 loc) 257 B
// ** MUI Imports import Grid from '@mui/material/Grid' const PageHeader = props => { // ** Props const { title, subtitle } = props return ( <Grid item xs={12}> {title} {subtitle || null} </Grid> ) } export default PageHeader