Changeset e48199a for my-react-app/src/App.js
- Timestamp:
- 05/07/25 18:34:01 (10 days ago)
- Branches:
- main
- Parents:
- b67dfd3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
my-react-app/src/App.js
rb67dfd3 re48199a 96 96 const option = currentTime.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit', hour12: false }); 97 97 slots.push(option); 98 currentTime.setMinutes(currentTime.getMinutes() + 15); // Increment by 15 minutes98 currentTime.setMinutes(currentTime.getMinutes() + 15); 99 99 } 100 100 … … 322 322 <div className="card-body"> 323 323 <div className="row"> 324 {/* Narrow left column: info and actions */} 324 325 325 <div className="col-md-4"> 326 326 <RestaurantInfo key={restaurant.id} restaurant={restaurant}/> … … 340 340 </div> 341 341 342 {/* Wide right column: menu */} 342 343 343 <div className="col-md-8"> 344 344 <ReadOnlyMenuList restaurantId={restaurant.restaurantId}/>
Note:
See TracChangeset
for help on using the changeset viewer.