import useActiveReplayTab, {TabKey} from 'sentry/utils/replays/hooks/useActiveReplayTab'; import A11y from 'sentry/views/replays/detail/accessibility/index'; import Console from 'sentry/views/replays/detail/console'; import DomMutations from 'sentry/views/replays/detail/domMutations'; import ErrorList from 'sentry/views/replays/detail/errorList/index'; import MemoryChart from 'sentry/views/replays/detail/memoryChart'; import NetworkList from 'sentry/views/replays/detail/network'; import PerfTable from 'sentry/views/replays/detail/perfTable/index'; import Trace from 'sentry/views/replays/detail/trace/index'; type Props = {}; function FocusArea({}: Props) { const {getActiveTab} = useActiveReplayTab(); switch (getActiveTab()) { case TabKey.A11Y: return ; case TabKey.NETWORK: return ; case TabKey.TRACE: return ; case TabKey.PERF: return ; case TabKey.ERRORS: return ; case TabKey.DOM: return ; case TabKey.MEMORY: return ; case TabKey.CONSOLE: default: { return ; } } } export default FocusArea;