interactive rating component with react and css

Solution retrospective
for some reason my buttons have outlines, not sure why also the react router dom isn't needed, I realized that later
Please log in to post a comment
Log in with GitHubCommunity feedback
- @mseidel819
the
<button/>
component comes with a border by default. To get rid of it, in your css file, you can add:button { border:none; }
Or you can add the
border:none
to both your.circles
and.submit
classes. I'd pick the first option because it's less code.Marked as helpful
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord