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 === 'EVENTS') { return (
) } if (activeTab === 'CLICKMAP') { return (
) } return null } export default RightBlock