- A list of business applications.
-
-
- Business Name
- User Account
- Pitch Deck URL
- Is In US?
- Is For Sale?
- Generate Revenue
- Community Size
- Money raised to date
- Location
- Project
-
-
-
-
- {businessApplicationData && businessApplicationData.length > 0 ? (
- businessApplicationData.map((application) => (
-
- {application.business_name}
-
-
- {application.username}
-
-
-
- {application.pitch_deck_url && (
-
- {application.pitch_deck_url}
-
- )}
-
-
-
-
-
-
-
-
-
-
- {application.community_size}
- {application.money_raised_to_date}
- {application.location}
-
- {application.project_application_id && (
-
-
-
- )}
-
-
-
-
+
+
+ Pending ({pendingApplications.length})
+ Approved ({approvedApplications.length})
+ Rejected ({rejectedApplications.length})
+
+
+ {["pending", "approved", "rejected"].map((status) => (
+
+
+ {status.charAt(0).toUpperCase() + status.slice(1)} business applications
+
+
+ Business Name
+ User Account
+ Pitch Deck URL
+ Is In US?
+ Is For Sale?
+ Generate Revenue
+ Community Size
+ Money raised to date
+ Location
+ Project
+ Actions
- ))
- ) : (
-
-
- No business applications found
-
-
- )}
-
-