mirror of
https://github.com/xibyte/jsketcher
synced 2026-01-04 06:47:01 +01:00
14 lines
No EOL
529 B
JavaScript
14 lines
No EOL
529 B
JavaScript
import React from 'react';
|
|
import {Group} from '../../wizard/components/form/Form';
|
|
import {CheckboxField, NumberField, ReadOnlyValueField} from '../../wizard/components/form/Fields';
|
|
import ReadOnlyValueControl from 'ui/components/controls/ReadOnlyValueControl';
|
|
|
|
export default function MoveDatumWizard() {
|
|
return <Group>
|
|
<ReadOnlyValueField name='datum'/>
|
|
<NumberField name='x' label='X' />
|
|
<NumberField name='y' label='Y' />
|
|
<NumberField name='z' label='Z' />
|
|
<CheckboxField name='copy' />
|
|
</Group>;
|
|
} |