Im trying to solve, which should be a relatively straight forward issue. I am trying to render a component in the following page. I defined a layout for all children under dashboard. Im not sure if another layout needs to be defined to display within the child of dashboard
app/
├── context/
├── firebase/
├── mobile/
├── portal/
│ ├── components/
│ │ ├── AddGroup.jsx ** THIS COMPONENT **
│ │ └── Sidebar.jsx
│ └── dashboard/
│ ├── groups/
│ │ └── page.jsx ** SHOW COMPONENT HERE **
│ ├── individuals/
│ ├── settings/
│ ├── statistics/
│ ├── layout.jsx
│ └── page.jsx
├── login/
├── utils/
├── dummydata.ts
├── favicon.ico
├── globals.css
├── layout.tsx
└── page.tsx
All help appreciated