autoforma
Version:
AutoForma is a dynamic form builder based on Mantine and React
10 lines (9 loc) • 396 B
TypeScript
import { default as React } from 'react';
import { FieldSchema } from '../types';
type FieldLayoutWrapperProps = {
field: FieldSchema;
layout: "vertical" | "horizontal" | "grid";
children: React.ReactNode;
};
export declare function FieldLayoutWrapper({ field, layout, children, }: FieldLayoutWrapperProps): import("react/jsx-runtime").JSX.Element;
export default FieldLayoutWrapper;