import Feature from 'sentry/components/acl/feature'; import {NoAccess} from 'sentry/components/noAccess'; import NoProjectMessage from 'sentry/components/noProjectMessage'; import type {Organization} from 'sentry/types/organization'; import useOrganization from 'sentry/utils/useOrganization'; type Props = { children: React.ReactNode; organization: Organization; }; export default function ExploreContainer({children}: Props) { const organization = useOrganization(); return ( {children} ); }