diff --git a/src/App.jsx b/src/App.jsx
index a7dad6a..7454827 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -63,8 +63,8 @@ const App = () => {
score={score}
start={showStart}
/>
- {showStart ? : null}
- {showLogin ? : null}
+ {showStart && }
+ {showLogin && }
{renderGame()}
)
diff --git a/src/components/Game.jsx b/src/components/Game.jsx
index e9a72b0..1f10b8c 100644
--- a/src/components/Game.jsx
+++ b/src/components/Game.jsx
@@ -39,7 +39,7 @@ const Game = (props) => {
{showEndGame ?
:
}
-
+
{
return (
- {score >= 0 ?
TRIES REMAINING: {score}
: null}
- {start ? null :
NAME: {name}
}
+ {score >= 0 &&
TRIES REMAINING: {score}
}
+ {!start &&
NAME: {name}
}
)
}