jsketcher/web/app/cad/craft/boolean/BooleanWizard.jsx
2018-12-13 22:57:27 -08:00

11 lines
No EOL
370 B
JavaScript

import React from 'react';
import {Group} from '../wizard/components/form/Form';
import EntityList from '../wizard/components/form/EntityList';
import Entity from '../wizard/components/form/Entity';
export default function BooleanWizard() {
return <Group>
<Entity name='operandA' label='operand A' />
<Entity name='operandB' label='operand B' />
</Group>;
}