rfa
Version:
**React Form Architect** is an ultimate solution for creating and rendering forms in React. Its main focus is to provide users with a tool to define, render and share a form in a browser.
14 lines (13 loc) • 346 B
TypeScript
import React from "react";
declare type Props = {
opened: boolean;
title?: string;
text?: string;
onSuccess: () => void;
onDeny: () => void;
confirmationText?: string;
cancelationText?: string;
children: React.ReactNode;
};
export declare const CustomDialog: (props: Props) => JSX.Element;
export {};