From c1e72766c5f5e1d5dad39a67a05b9612bda81234 Mon Sep 17 00:00:00 2001 From: nicola Date: Mon, 16 Mar 2020 21:51:32 +1100 Subject: [PATCH] Format Game.js and Join.js files co-authored-by: mitchemmc --- src/routes/Game.js | 8 ++++++-- src/routes/Join.js | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/routes/Game.js b/src/routes/Game.js index 1786449..043243a 100644 --- a/src/routes/Game.js +++ b/src/routes/Game.js @@ -2,7 +2,11 @@ import React from "react"; import { A } from "hookrouter"; function Game() { - return
GO TO HOMEGAME!
+ return ( +
+ GO TO HOMEGAME! +
+ ); } -export default Game; \ No newline at end of file +export default Game; diff --git a/src/routes/Join.js b/src/routes/Join.js index d87c95b..343cc38 100644 --- a/src/routes/Join.js +++ b/src/routes/Join.js @@ -2,7 +2,11 @@ import React from "react"; import { A } from "hookrouter"; function Join() { - return
GO TO GAMEJOIN!
+ return ( +
+ GO TO GAMEJOIN! +
+ ); } -export default Join; \ No newline at end of file +export default Join;