From aa9ae8a3e6f8cf8c864baf8615db78643fa55cd7 Mon Sep 17 00:00:00 2001 From: Kristoffer Juelsen Date: Wed, 23 Mar 2022 10:39:29 +0100 Subject: [PATCH] added appbar and changed react.fragment to <> --- src/client/src/index.js | 4 ++-- src/client/src/managetournament.js | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/client/src/index.js b/src/client/src/index.js index 4e90d2d..f1b1afc 100644 --- a/src/client/src/index.js +++ b/src/client/src/index.js @@ -4,8 +4,8 @@ import "./index.css"; import App from "./frontpage.js"; ReactDOM.render( - + <> - , + , document.getElementById("root") ); diff --git a/src/client/src/managetournament.js b/src/client/src/managetournament.js index 2233a68..c527226 100644 --- a/src/client/src/managetournament.js +++ b/src/client/src/managetournament.js @@ -6,7 +6,7 @@ import SaveButton from "./components/savebutton"; function ManageTournament(props) { return ( - + <>
@@ -27,7 +27,7 @@ function ManageTournament(props) {

-
+ ); } @@ -59,13 +59,13 @@ function InviteButton(props) { //navigator.clipboard.writeText("discord.gg/asura") export default function TournamentManager() { return ( - + <> - + ); }