@coko/client
Version:
Client side common code for coko apps
11 lines (10 loc) • 313 B
TypeScript
import React from 'react';
type FormSectionProps = {
className?: string;
children?: React.ReactNode;
/** Label to display as heading above section */
label?: string | null;
last?: boolean;
};
declare const FormSection: (props: FormSectionProps) => React.ReactNode;
export default FormSection;