mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-19 15:02:21 +01:00
14 lines
No EOL
457 B
JavaScript
14 lines
No EOL
457 B
JavaScript
import React from 'react';
|
|
import {CheckboxField, NumberField} from '../wizard/components/form/Fields';
|
|
import {Group} from '../wizard/components/form/Form';
|
|
import EntityList from '../wizard/components/form/EntityList';
|
|
|
|
export default function RevolveForm() {
|
|
|
|
return <Group>
|
|
<NumberField name='angle' />
|
|
<EntityList name='face' entity='face' />
|
|
<EntityList name='axis' entity='sketchObject' />
|
|
<CheckboxField name='cut' />
|
|
</Group>;
|
|
} |