import React, { useState } from 'react' import { Box, Typography } from '@mui/material' import './ExploreCoursesDetails.css' const ExploreDetailsWhatLearn: React.FC = () => { const [showAll, setShowAll] = useState(false) const points = [ 'A beginner’s guide to the stock market, this course can help you learn the basics.', 'Investors with some experience in the stock market who would like to improve their knowledge and skills.', 'Individuals seeking long-term financial growth who want to grow their money over time should consider investing in the stock market.', 'People who want to understand the stock market better.', 'Helpful for students and professionals in finance and economics.', ] const toggleView = () => setShowAll(!showAll) return ( {/* Image Section */} Course Illustration {/* Text Section */} What will you learn from the course? ) } export default ExploreDetailsWhatLearn