source: frontend/src/Components/UserPanel/PastRestaurantReservations.js

Last change on this file was 07f4e8b, checked in by darsov2 <62809499+darsov2@…>, 5 months ago

prefinal fixes

  • Property mode set to 100644
File size: 797 bytes
Line 
1import HotelReservationListing from "./HotelReservationListing";
2import React from "react";
3import useGet from "../Hooks/useGet";
4
5const PastRestaurantReservations = () => {
6
7 const {data, isLoading, setData, getData, setChanged} = useGet('/restaurant/reservations/user/1/past')
8 !isLoading && console.log(data)
9
10 return (
11 <>
12 {!isLoading && data.map((res) => {
13 console.log(res)
14 return (<HotelReservationListing setChanged={setChanged} past={true} data={res} type={'restaurant'}></HotelReservationListing>)
15 })}
16 {(!isLoading && data.length === 0) && <h3 className={'my-5'}>Нема податоци за одбраните критериуми!</h3>}
17 </>
18 )
19}
20
21export default PastRestaurantReservations;
Note: See TracBrowser for help on using the repository browser.