diff --git a/anecdotes/.prettierrc b/anecdotes/.prettierrc
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ b/anecdotes/.prettierrc
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/anecdotes/src/App.js b/anecdotes/src/App.js
index 5c72bc7..74e2296 100644
--- a/anecdotes/src/App.js
+++ b/anecdotes/src/App.js
@@ -1,9 +1,47 @@
+import { useState } from "react";
+
const App = () => {
+ const anecdotes = [
+ "If it hurts, do it more often.",
+ "Adding manpower to a late software project makes it later!",
+ "The first 90 percent of the code accounts for the first 10 percent of the development time...The remaining 10 percent of the code accounts for the other 90 percent of the development time.",
+ "Any fool can write code that a computer can understand. Good programmers write code that humans can understand.",
+ "Premature optimization is the root of all evil.",
+ "Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.",
+ "Programming without an extremely heavy use of console.log is same as if a doctor would refuse to use x-rays or blood tests when diagnosing patients.",
+ "The only way to go fast, is to go well.",
+ ];
+
+ const [selected, setSelected] = useState(0);
+ const [points, setPoints] = useState(Array(anecdotes.length).fill(0));
+ const [mostVotes, setMostVotes] = useState(0);
+
+ const getAnecdote = () => {
+ setSelected(Math.floor(Math.random() * anecdotes.length));
+ };
+
+ const setVote = (voteNum) => {
+ const copy = [...points];
+ copy[voteNum]++;
+ if (copy[voteNum] > copy[mostVotes]) {
+ setMostVotes(voteNum);
+ }
+ setPoints(copy);
+ };
+
return (
- Hello World
-
- )
-}
+
Anecdote of the Day
+ {anecdotes[selected]}
+
has {points[selected]} votes
+
+
+
+
+
Anecdote with most votes
+
{anecdotes[mostVotes]}
+
+ );
+};
export default App;
diff --git a/anecdotes/src/index.js b/anecdotes/src/index.js
index 593edf1..0a2a6d7 100644
--- a/anecdotes/src/index.js
+++ b/anecdotes/src/index.js
@@ -1,10 +1,6 @@
-import React from 'react';
-import ReactDOM from 'react-dom/client';
-import App from './App';
+import React from 'react'
+import ReactDOM from 'react-dom/client'
-const root = ReactDOM.createRoot(document.getElementById('root'));
-root.render(
-
-
-
-);
+import App from './App'
+
+ReactDOM.createRoot(document.getElementById('root')).render()
\ No newline at end of file
diff --git a/courseinfo/.prettierrc b/courseinfo/.prettierrc
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ b/courseinfo/.prettierrc
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/courseinfo/src/App.js b/courseinfo/src/App.js
index 5c72bc7..0ce88e0 100644
--- a/courseinfo/src/App.js
+++ b/courseinfo/src/App.js
@@ -1,9 +1,64 @@
+const Header = (props) => {
+ return
{props.course}
;
+};
+
+const Total = (props) => {
+ return (
+
+ Number of exercises{" "}
+ {props.parts[0].exercises +
+ props.parts[1].exercises +
+ props.parts[2].exercises}
+