blob: 82c1ff8088af618f1986f2a73bc7d2218222bc39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import { Form } from "react-router-dom";
export default function Edit() {
return (
<div>
<h1>Albatross.swift</h1>
<h2>Team Edit</h2>
<Form method="post">
<label>Team name</label>
<input type="text" name="name" />
<label>Icon</label>
<input type="text" name="icon" disabled />
<button type="submit">Save</button>
</Form>
</div>
);
}
|