import React from 'react'; import { Modal, Form, Input, ConfigProvider, Button, Typography } from 'antd'; const { Text } = Typography; const DetailBrandDevice = ({ visible, onCancel, onOk, form, editingKey, readOnly }) => { const modalTitle = readOnly ? 'Preview Brand' : (editingKey ? 'Edit Brand' : 'Tambah Brand'); return ( {!readOnly && ( )} , ]} destroyOnClose >
Kode Brand *
Brand Name *
Brand Type *
Device Name *
Description
); }; export default DetailBrandDevice;