Add link to anecdote

This commit is contained in:
Andrew Trieu
2023-06-29 09:46:23 +03:00
parent f8e13d8099
commit 5563e819fb

View File

@@ -36,7 +36,9 @@ const Anecdote = ({ anecdote }) => (
{anecdote.content} by {anecdote.author}
</h2>
<p>has {anecdote.votes} votes</p>
<p>for more info see{anecdote.info}</p>
<p>
for more info see <a href={anecdote.info}>{anecdote.info}</a>
</p>
</div>
);