import React from 'react'; 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;