import {useCallback} from 'react';
import ErrorBoundary from 'sentry/components/errorBoundary';
import Section from 'sentry/components/feedback/feedbackItem/feedbackItemSection';
import LazyLoad from 'sentry/components/lazyLoad';
import ReplayIdCountProvider from 'sentry/components/replays/replayIdCountProvider';
import {IconPlay} from 'sentry/icons';
import {t} from 'sentry/locale';
import {Organization} from 'sentry/types';
interface Props {
eventTimestampMs: number;
organization: Organization;
replayId: string;
}
export default function ReplaySection({eventTimestampMs, organization, replayId}: Props) {
const replayPreview = useCallback(
() => import('sentry/components/events/eventReplay/replayPreview'),
[]
);
return (
} title={t('Linked Replay')}>
);
}