Changeset 748b7f6 for my-react-app/src/components
- Timestamp:
- 03/03/24 20:56:13 (15 months ago)
- Branches:
- main
- Children:
- a3d63eb
- Parents:
- 3ba01da
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
my-react-app/src/components/Customers.js
r3ba01da r748b7f6 44 44 <div className="card h-100"> 45 45 <div className="card-body"> 46 <h5 className="card-title">{customer.f ullName}</h5>46 <h5 className="card-title">{customer.firstName + " " + customer.lastName}</h5> 47 47 <p className="card-text"><strong>Email:</strong> {customer.email}</p> 48 48 <p className="card-text"><strong>Phone:</strong> {customer.phone}</p> … … 50 50 <p className="card-text"><strong>Membership 51 51 Level:</strong> {customer.membershipLevel}</p> 52 <p className="card-text"><strong>Registration53 Date:</strong> {new Date(customer.registrationDate).toLocaleString()}</p>52 {/*<p className="card-text"><strong>Registration*/} 53 {/* Date:</strong> {new Date(customer.registrationDate).toLocaleString()}</p>*/} 54 54 </div> 55 55 <button onClick={() => handleDetailClick(customer.customerId)}>View Details</button>
Note:
See TracChangeset
for help on using the changeset viewer.