Skip to content

Instantly share code, notes, and snippets.

@jobenjada
Last active July 22, 2022 12:39
Show Gist options
  • Save jobenjada/c4f5101d745ffdcedff47b32ff6bb432 to your computer and use it in GitHub Desktop.
Save jobenjada/c4f5101d745ffdcedff47b32ff6bb432 to your computer and use it in GitHub Desktop.
snoopForm Example
<SnoopForm
domain="localhost:3000"
protocol="http"
className="w-full space-y-6"
onSubmit={({ submission, schema })=>{}}>
<SnoopPage name="first">
<SnoopElement
type="text"
name={"name"}
label="Your name"
classNames={{
label: "your-label-class",
element: "your-input-class",}}
required/>
</SnoopPage>
<SnoopPage thankyou>
<h1>Thank you!</h1>
</SnoopPage>
</SnoopForm>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment