import React from 'react'; import { useHMSActions } from '@100mslive/react-sdk'; import { CrossIcon, ShareScreenIcon } from '@100mslive/react-icons'; import { Button } from '../../Button'; import { Flex } from '../../Layout'; import { Text } from '../../Text'; export const ScreenshareDisplay = () => { const hmsActions = useHMSActions(); return ( You are sharing your screen ); };