@coko/client
Version:
Client side common code for coko apps
13 lines (12 loc) • 345 B
TypeScript
import React, { ReactNode } from 'react';
type SignupProps = {
className?: string;
errorMessage?: string;
hasError?: boolean;
hasSuccess?: boolean;
loading?: boolean;
onSubmit: () => void;
termsAndConditionsContent?: ReactNode;
};
declare const Signup: (props: SignupProps) => React.ReactNode;
export default Signup;