Created
December 14, 2018 23:38
-
-
Save planetoftheweb/4f433de6db893878acaa78135e705d06 to your computer and use it in GitHub Desktop.
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 className="appointment-list item-list mb-3"> | |
<div className="pet-item col media py-3"> | |
<div className="mr-3"> | |
<button className="pet-delete btn btn-sm btn-danger">X</button> | |
</div> | |
<div className="pet-info media-body"> | |
<div className="pet-head d-flex"> | |
<span className="pet-name">petName</span> | |
<span className="apt-date ml-auto">aptDate</span> | |
</div> | |
<div className="owner-name"> | |
<span className="label-item">Owner: </span> | |
<span>ownerName</span> | |
</div> | |
<div className="apt-notes">aptNotes</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment