import * as Layout from 'sentry/components/layouts/thirds'; import PageFiltersContainer from 'sentry/components/organizations/pageFilters/container'; import {PageHeadingQuestionTooltip} from 'sentry/components/pageHeadingQuestionTooltip'; import ReplaysFeatureBadge from 'sentry/components/replays/replaysFeatureBadge'; import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle'; import {t} from 'sentry/locale'; import useReplayPageview from 'sentry/utils/replays/hooks/useReplayPageview'; import useOrganization from 'sentry/utils/useOrganization'; import ReplaysFilters from 'sentry/views/replays/filters'; import ReplaysList from 'sentry/views/replays/list/replaysList'; function ReplaysListContainer() { useReplayPageview('replay.list-time-spent'); const {slug: orgSlug} = useOrganization(); return ( {t('Session Replay')} ); } export default ReplaysListContainer;