function Parent({children}) {
return (
<div>
{children}
</div>
);
}
export default function App() {
const Title = () => {
return <h2>Hello world</h2>;
};
return (
<div>
<Parent>
<Title />
</Parent>
</div>
);
}