// @flow import { createMaterialTopTabNavigator } from '@react-navigation/material-top-tabs'; import React from 'react'; import { useSelector } from 'react-redux'; import { getClientHeight, getClientWidth } from '../../../base/modal/components/functions.native'; import { Chat } from '../../../chat'; import { chatTabBarOptions } from '../../../conference/components/native/ConferenceNavigatorScreenOptions'; import { screen } from '../../../conference/components/native/routes'; import { PollsPane } from '../../../polls/components'; const ChatTab = createMaterialTopTabNavigator(); const ChatAndPolls = () => { const clientHeight = useSelector(getClientHeight); const clientWidth = useSelector(getClientWidth); return ( ); }; export default ChatAndPolls;