Spring Boot validation with react (part 2)
In the previous installment of this series we created a spring boot based backend for managing Club entities.
Here, we will create a React based frontend that allows us to edit individual Clubs.
Creating the client We will scaffold an empty project with vite:
pnpm create vite In the options choose
React TypeScript Then we add the necessary dependencies
pnpm add primereact primeicons pnpm add react-hook-form @hookform/resolvers zod react-query @tanstack/react-router@beta pnpm add -D sass Now we can already start the dev server and see our generated application: