diff --git a/part1/README.md b/part1/README.md index 439f515..c0b715b 100644 --- a/part1/README.md +++ b/part1/README.md @@ -14,3 +14,6 @@ - 1.9 - - 1.10 - - 1.11 - + +- Anecdotes + - 1.12 - < diff --git a/part1/unicafe/src/App.js b/part1/unicafe/src/App.js index 9d9224c..afe2d58 100644 --- a/part1/unicafe/src/App.js +++ b/part1/unicafe/src/App.js @@ -52,7 +52,7 @@ const Statistics = ({ good, neutral, bad }) => { ) } -function App() { +const App = () => { const [good, setGood] = useState(0) const [neutral, setNeutral] = useState(0) const [bad, setBad] = useState(0)