import type {RouteComponentProps} from 'react-router'; import Feature from 'sentry/components/acl/feature'; import Alert from 'sentry/components/alert'; import * as Layout from 'sentry/components/layouts/thirds'; import NoProjectMessage from 'sentry/components/noProjectMessage'; import {t} from 'sentry/locale'; import useOrganization from 'sentry/utils/useOrganization'; type Props = RouteComponentProps<{}, {}> & { children: React.ReactNode; }; export default function FeedbackContainer({children}: Props) { const organization = useOrganization(); return ( {children} ); } function NoAccess() { return ( {t("You don't have access to this feature")} ); }