mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-17 22:15:44 +01:00
10 lines
No EOL
262 B
JavaScript
10 lines
No EOL
262 B
JavaScript
import React from 'react';
|
|
import {Group} from '../../wizard/components/form/Form';
|
|
import Entity from '../../wizard/components/form/Entity';
|
|
|
|
|
|
export default function PlaneWizard() {
|
|
return <Group>
|
|
<Entity name='datum' placeholder='origin'/>
|
|
</Group>;
|
|
} |