개발 노트

Ant Design - Modal 본문

React

Ant Design - Modal

알 수 없는 사용자 2023. 8. 18. 15:39

ant design 4.24 에서 <Modal></Modal>을 사용할 때,

속성에 open이 아닌 visible로 작성해야 모달창이 열린다.

// 모달창이 보이지 않는다
<Modal title="Basic Modal" open={isModalOpen}>
    <p>Some contents...</p>
    <p>Some contents...</p>
    <p>Some contents...</p>
</Modal>


// 모달창이 보인다
<Modal title="Basic Modal" visible={isModalOpen}>
    <p>Some contents...</p>
    <p>Some contents...</p>
    <p>Some contents...</p>
</Modal>