import React from 'react'; import { Row, Col } from 'react-flexbox-grid'; import { Text } from '@blueprintjs/core'; import ShareEntireScreenOrAppWindowControlGroup from '../ShareAppOrScreenControlGroup'; interface ChooseAppOrScreeenStepProps { handleNextEntireScreen: () => void; handleNextApplicationWindow: () => void; } const ChooseAppOrScreeenStep: React.FC = ( props: ChooseAppOrScreeenStepProps ) => { const { handleNextEntireScreen, handleNextApplicationWindow } = props; return (
Choose Entire Screen or App window you want to share
); }; export default ChooseAppOrScreeenStep;