UNPKG

@sliderzz/daz-ui

Version:

This is component lib

11 lines (10 loc) 252 B
import React from "react"; import "./daz-form.css"; interface FormProps { onSubmit: (formData: { [key: string]: string; }) => void; submitButtonText: string; } declare const Form: React.FC<FormProps>; export default Form;