blob: 2712cd5e59347964c4884e5c78424d745533927d (
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 New() {
return (
<div>
<h1>Albatross.swift</h1>
<h2>
Team New
</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">Create</button>
</Form>
</div>
);
};
|