モードウィンドウの作成
const [modal, setModal] = useState(false);
return(
<button
onClick={() => { setModalOpen(true); }}
</button>
{modalOpen === true
? <Modal getModal={modal} setModal={setModal} />
: null
}
)
ステータス値を
Reference
この問題について(モードウィンドウの作成), 我々は、より多くの情報をここで見つけました https://velog.io/@alonjoe/모달창-만들기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol