0
0
mirror of https://github.com/yude-jp/yude.jp synced 2025-12-16 20:54:17 +09:00

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

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>
}
};