UNPKG

273 BTypeScriptView Raw
1import { Component, ComponentType } from "react";
2
3export interface FormSectionProps<P> {
4 name: string;
5 component?: ComponentType<P> | undefined;
6}
7
8export declare class FormSection<P = {}> extends Component<FormSectionProps<P> & P> {}
9
10export default FormSection;