UNPKG

michihouse-components-tmp

Version:

Biblioteca de componentes da MichiHouse

13 lines (12 loc) 259 B
import * as React from "react"; interface RegisterFormProps { dev: boolean; login: { url: string; }; register: { action: () => boolean; }; } declare const RegisterForm: React.FC<RegisterFormProps>; export { RegisterForm };