import { Box, Divider, Stack, Typography } from '@mui/material' import PropTypes from 'prop-types' const PageLayout = ({ title, children }) => { return ( {title}
{children}
) } PageLayout.propTypes = { title: PropTypes.string, children: PropTypes.node } PageLayout.defaultProps = { title: 'Custom' } export default PageLayout