Use em dash for title seperators

This commit is contained in:
Alfred Melch 2019-12-22 20:02:34 +01:00
parent 00c2440163
commit 495ba40f86

View File

@ -34,10 +34,10 @@ const Book = ({ entry }) => {
return (
<div>
<div>
{id} {title.join(' - ')}
{id} {title.join(' ')}
</div>
<div>{author[0]}</div>
<div>{language.join(' - ')}</div>
<div>{language.join(' ')}</div>
<div>
<button onClick={handleClick}>Load</button>
</div>