From 40244a4fca54b3cea49fd43c63fa86a2efe06333 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Fri, 5 Jun 2020 18:00:20 -0700 Subject: [PATCH] Use an actual space not an   entity. I didn't really want any non-breaking semantics here. I just wanted a plain-old space but it wasn't obvious to me how to get it for some reason. The answer is pretty simple: a string literal inside curly braces. --- tictactoe/tictactoe.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tictactoe/tictactoe.jsx b/tictactoe/tictactoe.jsx index 46cee2a..6a27a22 100644 --- a/tictactoe/tictactoe.jsx +++ b/tictactoe/tictactoe.jsx @@ -310,7 +310,7 @@ class Game extends React.Component {
-   + {" "}
{status}
-- 2.43.0