|
|
@@ -1,12 +1,33 @@
|
|
|
import React from 'react';
|
|
|
|
|
|
const ConfirmBotChangeModal = () => {
|
|
|
- return(
|
|
|
+ return (
|
|
|
<>
|
|
|
- <h1>Hi</h1>
|
|
|
- </>
|
|
|
- )
|
|
|
+ <button type="button" className="btn btn-primary" data-toggle="modal" data-target="#staticBackdrop">
|
|
|
+ Launch static backdrop modal
|
|
|
+ </button>
|
|
|
|
|
|
+ <div className="modal fade" id="staticBackdrop" data-backdrop="static" data-keyboard="false" tabIndex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
|
|
|
+ <div className="modal-dialog">
|
|
|
+ <div className="modal-content">
|
|
|
+ <div className="modal-header">
|
|
|
+ <h5 className="modal-title" id="staticBackdropLabel">Modal title</h5>
|
|
|
+ <button type="button" className="close" data-dismiss="modal" aria-label="Close">
|
|
|
+ <span aria-hidden="true">×</span>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <div className="modal-body">
|
|
|
+ ...
|
|
|
+ </div>
|
|
|
+ <div className="modal-footer">
|
|
|
+ <button type="button" className="btn btn-secondary" data-dismiss="modal">Close</button>
|
|
|
+ <button type="button" className="btn btn-primary">Understood</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </>
|
|
|
+ );
|
|
|
}
|
|
|
|
|
|
export default ConfirmBotChangeModal;
|