import React, { useState } from 'react' const App = () => { // save clicks of each button to its own state const [good, setGood] = useState(0) const [neutral, setNeutral] = useState(0) const [bad, setBad] = useState(0) return (

Give feedback

Statistic

Good: {good}

Neutral: {neutral}

Bad: {bad}

) } export default App