import React, { useState } from 'react' import Typography from '@mui/material/Typography' import TextField from '@mui/material/TextField' import { v4 as uuid } from 'uuid' export function Home() { const [roomName, setRoomName] = useState(uuid()) const handleRoomNameChange = (event: React.ChangeEvent) => { const { value } = event.target setRoomName(value) } return (
chitchatter This is a communication tool that is free, open source, and designed for maximum security. All communication between you and your online peers is encrypted and ephemeral. chitchatter is still a work in progress and not yet ready to be used!
) }