import React from "react"; import Carousel from "react-bootstrap/Carousel"; import Review from "../BecomeAHost/Review"; import { useState } from "react"; import { Container } from "react-bootstrap"; const ReviewsCarousel = () => { document.body.style.backgroundColor = "white"; const [index, setIndex] = useState(0); const handleSelect = (selectedIndex) => { setIndex(selectedIndex); }; return (<> ) } export default ReviewsCarousel;