feat(SW-251): add error text

This commit is contained in:
Fredrik Thorsson
2024-09-11 16:29:50 +02:00
parent 98b903b314
commit 297fdfab57

View File

@@ -18,7 +18,7 @@ export default function HotelCardListing({ hotelData }: HotelCardListingProps) {
<HotelCard key={hotel.hotelData?.name} hotel={hotel} /> <HotelCard key={hotel.hotelData?.name} hotel={hotel} />
)) ))
) : ( ) : (
<Title>Hallå</Title> <Title>No hotels found</Title>
)} )}
</section> </section>
) )