├── .babelrc ├── .gitignore ├── README.md ├── next-env.d.ts ├── package.json ├── pages ├── __tests__ │ └── index.test.tsx ├── _app.js ├── api │ └── auth.ts └── index.tsx ├── public ├── favicon.ico └── vercel.svg ├── styles └── globals.css ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["next/babel"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/react-hook-form-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/react-hook-form-demo/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/react-hook-form-demo/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/react-hook-form-demo/HEAD/package.json -------------------------------------------------------------------------------- /pages/__tests__/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/react-hook-form-demo/HEAD/pages/__tests__/index.test.tsx -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/react-hook-form-demo/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/api/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/react-hook-form-demo/HEAD/pages/api/auth.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/react-hook-form-demo/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/react-hook-form-demo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/react-hook-form-demo/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/react-hook-form-demo/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/react-hook-form-demo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/react-hook-form-demo/HEAD/yarn.lock --------------------------------------------------------------------------------