카테고리 없음
react 에서 쉽게 만드는 confrim 창
개발자자자
2021. 10. 5. 16:16
You can use this npm package. https://github.com/gregthebusker/react-confirm-bootstrap.
Once you have installed it, you can use it like this in your project.
<ConfirmationModal
onConfirm={this.onConfirm} body="Are you sure?"
confirmText="Yes"
cancelText="No"
title="Delete confirmation">
<Button>Button Text</Button>
</ConfirmationModal>
I have been using this package in my project with a few modifications. But the default package should be more than enough for your use case.
출처 https://stackoverflow.com/questions/46222416/react-js-confirmation-modal