Skip to content

Instantly share code, notes, and snippets.

View healchips's full-sized avatar

Healchips008 healchips

View GitHub Profile
import type { CSSProperties, Dispatch, SetStateAction } from 'react';
import { useState, type FormEvent } from 'react';
interface CreateUserFormProps {
setUserWasCreated: Dispatch<SetStateAction<boolean>>;
}
interface ValidationErrors {
tooShort: boolean;
tooLong: boolean;