mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 04:45:06 +01:00
18 lines
No EOL
591 B
JavaScript
18 lines
No EOL
591 B
JavaScript
import React from 'react';
|
|
import {Group} from '../../wizard/components/form/Form';
|
|
import {NumberField, RadioButtonsField} from '../../wizard/components/form/Fields';
|
|
import {RadioButton} from 'ui/components/controls/RadioButtons';
|
|
import Entity from '../../wizard/components/form/Entity';
|
|
|
|
|
|
export default function PlaneWizard() {
|
|
return <Group>
|
|
<RadioButtonsField name='orientation'>
|
|
<RadioButton value='XY' />
|
|
<RadioButton value='XZ' />
|
|
<RadioButton value='ZY' />
|
|
</RadioButtonsField>
|
|
<Entity name='datum' />
|
|
<NumberField name='depth' />
|
|
</Group>;
|
|
} |