@lstz/reusable-form
Version:
A reusable React component for creating simple, flexible forms.
13 lines • 624 B
TypeScript
/**
* Composant FormContainer : Gère l'affichage d'un conteneur et wrapper de formulaire
* @param {Object} props - Les propriétés du composant
* @param {string} props.formattedTitle - Titre du formulaire formaté pour les classNames CSS
* @param {React.ReactNode} props.children - Contenu du formulaire (title, form, footer)
*/
interface FormContainerProps {
formattedTitle: string;
children: React.ReactNode;
}
declare function FormContainer({ formattedTitle, children }: FormContainerProps): import("react/jsx-runtime").JSX.Element;
export default FormContainer;
//# sourceMappingURL=FormContainer.d.ts.map