import React from 'react' const MyOtherComponent = ({title, children}) => { return ( <>
{title}
{children}
) } export default MyOtherComponent