-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Hanner Enrique De La Hoz Barraza
committed
Apr 30, 2023
1 parent
8a877d3
commit 4edf69a
Showing
8 changed files
with
28 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import Button from "react-bootstrap/Button"; | ||
import Modal from "react-bootstrap/Modal"; | ||
|
||
export default function MyVerticallyCenteredModal(props) { | ||
return ( | ||
<Modal {...props} size="lg" aria-labelledby="contained-modal-title-vcenter" centered> | ||
<Modal.Header closeButton> | ||
<Modal.Title id="contained-modal-title-vcenter">Modal heading</Modal.Title> | ||
</Modal.Header> | ||
<Modal.Body> | ||
<h4>Centered Modal</h4> | ||
<p>Cras mattis consectetur purus sit amet fermentum. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</p> | ||
</Modal.Body> | ||
<Modal.Footer> | ||
<Button variant="secondary">Cerrar</Button> | ||
<Button variant="primary">Guardar</Button> | ||
</Modal.Footer> | ||
</Modal> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters