import React from 'react' import EventsBlock from '../Session_/EventsBlock'; import PageInsightsPanel from '../Session_/PageInsightsPanel/PageInsightsPanel' import cn from 'classnames'; import stl from './rightblock.module.css'; function RightBlock(props: any) { const { activeTab } = props; if (activeTab === props.tabs.EVENTS) { return (
) } if (activeTab === props.tabs.HEATMAPS) { return (
) } return null } export default RightBlock