Overnap

채팅 스크롤 추가

......@@ -42,7 +42,7 @@ export const Chat: React.FC = () => {
return (
<div className='w-5/12'>
<div className='w-full h-80 rounded shadow flex flex-col items-center end'>
<div className='w-full h-80 rounded shadow flex flex-col overflow-y-scroll'>
{chatLines.map((line, i) => (<ChatLine key={16383+i} chatData={line}/>))}
<div ref={messageEndRef} />
</div>
......