Added format selector to Create Tournament page
This commit is contained in:
parent
da13804bf4
commit
0ba7fa779f
|
@ -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 (
|
||||
<div>
|
||||
<select>
|
||||
<option value="Single Elimination">Single Elimination</option>
|
||||
<option value="Double Elimination">Double Elimination</option>
|
||||
</select>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
function Save_Button(props) {
|
||||
return (
|
||||
<Link to="/">
|
||||
|
@ -14,6 +25,7 @@ export default function Create_Tournament(props) {
|
|||
return (
|
||||
<React.Fragment>
|
||||
<Home_Image />
|
||||
<Format_Selector />
|
||||
<Save_Button />
|
||||
</React.Fragment>
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue