Show nothing when nothing playing

This commit is contained in:
2021-05-25 16:47:04 +09:00
parent 6caa13923f
commit e2db2de68b
3 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ const App = () => {
if (playing){
return <p>{yes_playing}</p>
}else{
return <p>{no_playing}</p>
return <p>&#32;</p>
}
};