UNPKG

react-figura

Version:

<div align="center"> <a href="https://github.com/mbb10324/figura/"> <img src="https://raw.githubusercontent.com/mbb10324/figura/master/docs/logo.png" alt="react-figura" width="60%" /> </a>

10 lines (9 loc) 314 B
import React, { PropsWithChildren } from "react"; interface FiguraProps extends PropsWithChildren { children: React.ReactNode; formID: string; formStyle?: string; onSubmit?: (data: Record<string, string>) => void; } export default function Figura(props: FiguraProps): React.JSX.Element; export {};