import React from 'react'; import { Form, Button, Row } from 'react-bootstrap'; function Chat(props) { function handleChange(e) { e.preventDefault() props.setInner(e.target.value) console.log(e.target.value) } function sendMsgCH(e) { props.sendMsg(e) } return (

현재 {props.roomName} 입니다.

{ props.chatmsg.map((value, index) => ( {props.roomName}에서 보낸 메세지 : {value} ))}
); } export default Chat;