import React from 'react'; import {Table, Input, Checkbox, Label} from 'semantic-ui-react'; const DiItem = ({i18n, cusKey, data, onNameChange, onLogicChange, status}) => { return ( onNameChange(cusKey, e.target.value)} /> onLogicChange(cusKey, d.checked)}/> {i18n&&i18n.t ? i18n.t('page.dio.form.label.di_status') : ''} ) } export default DiItem;