Removed Tournament organizer and format selector from create form
This commit is contained in:
parent
b02b45c17a
commit
a9756fc051
|
@ -10,18 +10,6 @@ function CreateButton(props) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function FormatSelector(props) {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
Tournament Format:
|
|
||||||
<select>
|
|
||||||
<option value="Single Elimination">Single Elimination</option>
|
|
||||||
<option value="Double Elimination">Double Elimination</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function ParticipantLimit(props) {
|
function ParticipantLimit(props) {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
|
@ -43,9 +31,6 @@ function CreateForm(props) {
|
||||||
return (
|
return (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<form>
|
<form>
|
||||||
<label for="organizer">Tournament Organizer:</label>
|
|
||||||
<input type="text" id="organizer" />
|
|
||||||
<br />
|
|
||||||
<label for="name">Tournament Name:</label>
|
<label for="name">Tournament Name:</label>
|
||||||
<input type="text" id="name" />
|
<input type="text" id="name" />
|
||||||
<br />
|
<br />
|
||||||
|
@ -73,7 +58,6 @@ export default function CreateTournament(props) {
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<HomeImage />
|
<HomeImage />
|
||||||
<CreateForm />
|
<CreateForm />
|
||||||
<FormatSelector />
|
|
||||||
<ParticipantLimit />
|
<ParticipantLimit />
|
||||||
<CreateButton />
|
<CreateButton />
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
|
|
Loading…
Reference in New Issue