https://beta.reactjs.org/learn/your-first-component#nesting-and-organizing-components
Components can render other components, but you must never nest their definitions:
export default function Gallery() {
// 🔴 Never define a component inside another component!
function Profile() {
// ...
}
// ...