I have a quiz app built with React, that after the user answers it, it shows his score and then he needs to insert his email to send the results to the site owner.
I have a main component called App.js with the quiz and I saved his score like this:
const[score,setScore] = useState(0);
Now I want to show this score in my component "Score.js", so I need to get this score from App.js and send it to Score.js.