From 0ba7fa779f0881a4a910aa331c657044c2ecc750 Mon Sep 17 00:00:00 2001 From: Kristoffer Longva Eriksen Date: Thu, 17 Mar 2022 14:45:36 +0100 Subject: [PATCH] Added format selector to Create Tournament page --- src/client/src/create_tournament.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/client/src/create_tournament.js b/src/client/src/create_tournament.js index 4c77614..a0314ad 100644 --- a/src/client/src/create_tournament.js +++ b/src/client/src/create_tournament.js @@ -2,6 +2,17 @@ import * as React from "react"; import { BrowserRouter as Router, Link, Route, Routes } from "react-router-dom"; import Home_Image from "./components/home_image"; +function Format_Selector(props) { + return ( +
+ +
+ ); +} + function Save_Button(props) { return ( @@ -14,6 +25,7 @@ export default function Create_Tournament(props) { return ( + );