importReact, { Fragment } from'react';
// Components are functions, and they must start with a capital letterfunctionRenderIf({ children, condition }) {
return condition && <Fragment> {children}</Fragment>;
}
// This export will be picked up in ./index.jsexportdefaultRenderIf;