Skip to content

Instantly share code, notes, and snippets.

@Ze1598
Last active December 28, 2019 15:02
Show Gist options
  • Save Ze1598/87b8d83ec65ef4c9db31c9329a2efe57 to your computer and use it in GitHub Desktop.
Save Ze1598/87b8d83ec65ef4c9db31c9329a2efe57 to your computer and use it in GitHub Desktop.
Reusable modal component: modal.component.html (first version)
<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