Files
Practice-1/src/Components/UserEdit.tsx

16 lines
505 B
TypeScript

import { Edit, SimpleForm, TextInput } from 'react-admin';
export const UserEdit = () => (
<Edit>
<SimpleForm>
<TextInput source="id" />
<TextInput source="name" />
<TextInput source="username" />
<TextInput source="email" />
<TextInput source="address.street" />
<TextInput source="phone" />
<TextInput source="website" />
<TextInput source="company.name" />
</SimpleForm>
</Edit>
);