import React from 'react'; import { Carousel, Container, Row, Col } from 'react-bootstrap'; import './courses.css'; function CourseCard({ imageUrl, title, text }) { return (
...
{title}

{text}

Go somewhere
); } const MyCarousel = () => { return (

Courses


Top Rated Courses

Recommended courses

); }; export default MyCarousel;