From 5141c19cb7d6cf969be8fe4d103b1cd9bd26bc74 Mon Sep 17 00:00:00 2001 From: Felix Hamme Date: Thu, 3 Oct 2019 11:47:34 +0200 Subject: [PATCH] Link fullscreen page from tournament page --- pages/tournament.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pages/tournament.js b/pages/tournament.js index 7fa6b53..80aed4a 100644 --- a/pages/tournament.js +++ b/pages/tournament.js @@ -45,6 +45,7 @@ function StatusBar(props) { {props.tournament.name} + ); } @@ -55,6 +56,12 @@ function StatisticsButton(props) { ); } +function FullscreenButton(props) { + return ( + Vollbild-Ansicht + ); +} + function mapStateToTournamentPageProperties(state) { const {isSignedIn, username} = state.userinfo;