diff --git a/src/features/form/MessageForm.jsx b/src/features/form/MessageForm.jsx new file mode 100644 index 000000000..39ab4255c --- /dev/null +++ b/src/features/form/MessageForm.jsx @@ -0,0 +1,49 @@ +import { IconButton } from '@chakra-ui/button'; +import { FormControl, FormLabel } from '@chakra-ui/form-control'; +import { ViewIcon, ViewOffIcon } from '@chakra-ui/icons'; +import { Input } from '@chakra-ui/input'; +import { useState } from 'react'; + +export default function MessageForm(props) { + const [presenterShow, setPresenterShow] = useState(false); + const [publicShow, setPublicShow] = useState(false); + + const handleSetPresenter = () => { + setPresenterShow(!presenterShow); + } + + const handleSetPublic = () => { + setPublicShow(!publicShow); + } + + return ( + <> +
+ + Presenter screen message + + + : } + /> + +
+ + Public screen message + + + : } + /> + + + ); +}