aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/routes/teams/Edit.tsx
blob: 0b3ed7449c92d6984e8b88ae247c059f05835334 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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>
  );
};