import {cloneElement, Fragment, isValidElement} from 'react'; import type {RouteComponentProps} from 'react-router'; import Access from 'sentry/components/acl/access'; import type {Organization, Project} from 'sentry/types'; interface Props extends RouteComponentProps<{organizationId: string; projectId: string}, {}> { children: React.ReactNode; organization: Organization; project: Project; } function ProjectAlerts({children, project}: Props) { return ( {({hasAccess}) => ( {isValidElement(children) && cloneElement(children, { canEditRule: hasAccess, })} )} ); } export default ProjectAlerts;