import { Create, SimpleForm, TextInput, SelectInput, NumberInput } from 'react-admin'; const categoryChoices = [ { id: 'Расходник', name: 'Расходник' }, { id: 'Запчасть', name: 'Запчасть' }, { id: 'Инструмент', name: 'Инструмент' }, { id: 'Спецодежда', name: 'Спецодежда' }, ]; export const PartCreate = () => ( );