OurBigBook
web/front/Maybe.tsx
const Maybe = ({ test, children }) => <>{test && children}</>;

export default Maybe;