mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-17 14:04:29 +01:00
11 lines
No EOL
370 B
JavaScript
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>;
|
|
} |