From 5563e819fb4fa08a47452167a8a71b83dccaa0c8 Mon Sep 17 00:00:00 2001 From: Andrew Trieu Date: Thu, 29 Jun 2023 09:46:23 +0300 Subject: [PATCH] Add link to anecdote --- part7/routed-anecdotes/src/App.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/part7/routed-anecdotes/src/App.js b/part7/routed-anecdotes/src/App.js index 4090879..f648cbf 100644 --- a/part7/routed-anecdotes/src/App.js +++ b/part7/routed-anecdotes/src/App.js @@ -36,7 +36,9 @@ const Anecdote = ({ anecdote }) => ( {anecdote.content} by {anecdote.author}

has {anecdote.votes} votes

-

for more info see{anecdote.info}

+

+ for more info see {anecdote.info} +

);