mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-24 09:26:43 +01:00
12 lines
No EOL
356 B
JavaScript
12 lines
No EOL
356 B
JavaScript
import React from 'react';
|
|
import {Group} from '../wizard/components/form/Form';
|
|
import Entity from '../wizard/components/form/Entity';
|
|
import BooleanChoice from '../wizard/components/form/BooleanChioce';
|
|
|
|
export default function LoftForm() {
|
|
|
|
return <Group>
|
|
<Entity name='sections' entity='loop' />
|
|
<BooleanChoice name='boolean' />
|
|
</Group>;
|
|
} |