export default function ProjectList(props) { let text; props.children.forEach(function (x) { text = ( <> {text} {x} ); }); text = (
{text}
) return ( <>
{text}
); }