UNPKG

@tutim/fields

Version:

form infrastructure for web applications

9 lines (8 loc) 258 B
import { FormLayout } from '@tutim/types'; import React from 'react'; interface FieldGroupProps { children: React.ReactNode[]; layout?: FormLayout; } export declare const FieldGroup: ({ children, layout }: FieldGroupProps) => JSX.Element; export {};