diff --git a/part1/unicafe/src/App.js b/part1/unicafe/src/App.js index e566d90..5757347 100644 --- a/part1/unicafe/src/App.js +++ b/part1/unicafe/src/App.js @@ -19,6 +19,9 @@ const App = () => {

good {good}

neutral {neutral}

bad {bad}

+

all {good + neutral + bad}

+

average {(good - bad) / (good + neutral + bad)}

+

positive {(good / (good + neutral + bad)) * 100} %

); };