jsketcher/web/app/cad/craft/boolean/BooleanWizard.jsx
2018-11-30 19:41:47 -08:00

11 lines
No EOL
468 B
JavaScript

import React from 'react';
import {Group} from '../wizard/components/form/Form';
import BooleanChoice from '../wizard/components/form/BooleanChioce';
import SingleEntity from '../wizard/components/form/SingleEntity';
export default function BooleanWizard() {
return <Group>
<SingleEntity name='operandA' label='operand A' entity='shell' selectionIndex={0} />
<SingleEntity name='operandB' label='operand B' entity='shell' selectionIndex={1} />
</Group>;
}