Skip to content
#

prisma

Here are 952 public repositories matching this topic...

blitz
frankiesardo
frankiesardo commented Jul 22, 2021

What do you want and why?

When you create a new entity, say Project, you might have something like this:

const CreateProject = z.object({
  name: z.string()
})

<ProjectForm
  schema={CreateProject}
  .../>


function ProjectForm<..> {
  <LabeledTextField name="name" label="Name" placeholder="Name" />
}

This works fine. Fronted validation correctly highlights t

Improve this page

Add a description, image, and links to the prisma topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the prisma topic, visit your repo's landing page and select "manage topics."

Learn more