import Feature from 'sentry/components/acl/feature'; import FeatureDisabled from 'sentry/components/acl/featureDisabled'; import {t} from 'sentry/locale'; import type {Organization} from 'sentry/types'; import Trace from 'sentry/views/replays/detail/trace/trace'; import type {ReplayRecord} from 'sentry/views/replays/types'; type Props = { organization: Organization; replayRecord: undefined | ReplayRecord; }; const features = ['organizations:performance-view']; function PerfDisabled() { return ( ); } function TraceFeature({organization, replayRecord}: Props) { return ( ); } export default TraceFeature;