mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-19 06:56:45 +01:00
10 lines
No EOL
391 B
JavaScript
10 lines
No EOL
391 B
JavaScript
import React from 'react';
|
|
import {Group} from '../wizard/components/form/Form';
|
|
import EntityList from '../wizard/components/form/EntityList';
|
|
|
|
export default function BooleanWizard() {
|
|
return <Group>
|
|
<EntityList name='operandA' label='operand A' entity='shell' selectionIndex={0} />
|
|
<EntityList name='operandB' label='operand B' entity='shell' selectionIndex={1} />
|
|
</Group>;
|
|
} |