Last active
December 28, 2019 15:02
-
-
Save Ze1598/87b8d83ec65ef4c9db31c9329a2efe57 to your computer and use it in GitHub Desktop.
Reusable modal component: modal.component.html (first version)
This file contains hidden or 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
<div id="modal-content-wrapper"> | |
<header id="modal-header"> | |
<h1 id="modal-title">Placeholder title</h1> | |
</header> | |
<section id="modal-body"> | |
<p>Placeholder description</p> | |
</section> | |
<footer id="modal-footer"> | |
<button mat-raised-button id="modal-action-button" (click)="actionFunction()"> | |
Do it | |
</button> | |
<button mat-raised-button id="modal-cancel-button" (click)="closeModal()"> | |
Go back | |
</button> | |
</footer> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment