Skip to content

Commit

Permalink
Make Profile Page Dynamic #71 Load a user's reviews, and add delete r…
Browse files Browse the repository at this point in the history
…eview button functionality
  • Loading branch information
trialnerr committed Jan 9, 2025
1 parent 1fe2e8d commit 5fb2375
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/pages/Profile/Profile.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,17 @@ function Profile() {
if (!isLoaded || !user) {
return
}
//load a user's reviews
//delete button for a review
//load a user's reviews (done)
//delete button for a review
//load the profile pic
//load the userName
//add an edit button for a review

//add a list of favorite companies
return (
<main className="profile-container">
<ProfileInfo />
<section className="reviews">
<CompanyReviews />
<CompanyReviews />
</section>
</main>
)
Expand Down

0 comments on commit 5fb2375

Please sign in to comment.