// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import React from 'react';
// import {
// Flex,
// SecondaryButton
// } from 'amazon-chime-sdk-component-library-react';
import MeetingForm from '../MeetingForm';
//import SIPMeeting from '../SIPMeeting';
//import useToggle from '../../hooks/useToggle';
//import SIPMeetingProvider from '../../providers/SIPMeetingProvider';
import { StyledDiv, StyledWrapper } from './Styled';
const MeetingFormSelector: React.FC = () => {
// const { isActive, toggle } = useToggle(false);
// const formToShow = isActive ? (
//
//
//
// ) : (
//
// );
//const buttonText = isActive ? 'Join without SIP' : 'Join via SIP';
const formToShow = ()
return (
{formToShow}
{/*
*/}
);
};
export default MeetingFormSelector;