blob: ba00731f70adc4cf07854aaeae2a3cfa7a180713 (
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 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>
);
}
|