my user is showing 4 educational titles. I want it to only show 1 on mobile screen(less than 500px); How can I Accomplish this in react? below is the code and how it looks on a normal wide screen resolution and how Id like it to look
return (
<div className="educations-section">
{user.educations.map(
(educationRecord) => (
<div key={educationRecord._id}>{educationRecord.degree}</div>
)
)}
</div>
)