import SummaryBlock from 'Components/Session/Player/ReplayPlayer/SummaryBlock'; import React from 'react'; import Session from 'Types/session/session'; import EventsBlock from '../Session_/EventsBlock'; import PageInsightsPanel from '../Session_/PageInsightsPanel/PageInsightsPanel'; import TagWatch from 'Components/Session/Player/TagWatch'; import cn from 'classnames'; import stl from './rightblock.module.css'; function RightBlock({ activeTab, setActiveTab, }: { activeTab: string; setActiveTab: (tab: string) => void; }) { switch (activeTab) { case 'EVENTS': return (
); case 'CLICKMAP': return (
); case 'INSPECTOR': return (
); default: return null; } } export default RightBlock;