React/개념

새로운 창으로 띄우기

hihijh826 2025. 2. 11. 15:06
728x90
반응형
SMALL
const openChatInNewWindow = () => {
  window.open("/chat", "_blank", "width=600,height=400");
};

// 버튼 클릭 시 새로운 창 열기
<Button onClick={openChatInNewWindow}>새 창으로 채팅 열기</Button>

728x90
반응형
LIST