This commit is contained in:
Elijah Lucian
2021-04-11 14:57:19 -07:00
parent 0185aa5eec
commit 0df8bf9445
4 changed files with 81 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
import { Form, Input, Layout } from 'antd'
import { User } from '../../types'
export const NewUser = () => {
const [form] = Form.useForm<User>()
return (
<Form form={form}>
<Form.Item label="username" name="name">
<Input></Input>
</Form.Item>
</Form>
)
}