Created
February 4, 2025 12:28
-
-
Save nataliaconde/d9176f80e688f5b93cf37e9f50f7ec5b 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
/* Journal.tsx */ | |
<div className="section"> | |
{journal.map((item) => ( | |
<div className="card"> | |
<div className="card-text"> | |
<h3>{item.get("title")}</h3> | |
<p>{item.get("content")}</p> | |
</div> | |
<div className="buttons"> | |
<button onClick={() => deleteJournal(item.id)}>Delete</button> | |
</div> | |
</div> | |
))} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment