import DashboardLayout from '@/components/dashboard/dashboard-layout'
import { Stack, Typography} from '@mui/material'

const AccountMealPlans = () => {
  return (
    <DashboardLayout>
      <Stack
        flexDirection={'column'}
      >
        <Typography variant='h2'>Meal Plans</Typography>
        <Typography variant='subtitle1'></Typography>
      </Stack>
    </DashboardLayout>
  )
}

export default AccountMealPlans