import React, { type PropsWithChildren } from "react"; type Props = { with: () => boolean; } & PropsWithChildren const Protected: React.FC = props => props.with() ? <>{props.children} : ; // isLoggedIn}>