const Foo = ({ name, test }) => { return ( <>

hello, {name}

{test}
); }; const Bar = () => { return ( <> ); };