Skip to content

Commit 07c4041

Browse files
committedMar 14, 2024
Move and add to /user/dashboard, add some display CSS
1 parent 411eb0a commit 07c4041

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed
 

‎app/user/dashboard/page.jsx

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
"use client";
22

3-
import UserProfile from "../../../components/UserProfile/UserProfile";
3+
import UserProfile from "../../../components/UserDashboard/UserProfile";
4+
import RecentDonations from "../../../components/UserDashboard/RecentDonations";
45

56
export default function Page() {
67
return (
7-
<UserProfile
8-
firstName={"firstName"}
9-
lastName={"lastName"}
10-
profileURL={""}
11-
/>
8+
<div className="flex flex-row">
9+
<UserProfile
10+
firstName={"firstName"}
11+
lastName={"lastName"}
12+
profileURL={""}
13+
/>
14+
{/* Add any other donations related components to the below div. */}
15+
<div>
16+
<RecentDonations />
17+
</div>
18+
</div>
1219
);
1320
}

0 commit comments

Comments
 (0)