mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 17:04:58 +01:00
22 lines
394 B
TypeScript
22 lines
394 B
TypeScript
import React from 'react';
|
|
import {ContainerBasicProps, ContainerWidget} from "cad/mdf/ui/ContainerWidget";
|
|
import {Group} from "cad/craft/wizard/components/form/Form";
|
|
|
|
export interface GroupWidgetProps extends ContainerBasicProps {
|
|
|
|
type: 'group',
|
|
|
|
}
|
|
|
|
|
|
export function GroupWidget({content}: GroupWidgetProps) {
|
|
|
|
return <Group>
|
|
<ContainerWidget content={content} />
|
|
</Group>
|
|
|
|
}
|
|
|
|
|
|
|
|
|