diff --git a/examples/with-react-hook-form/.gitignore b/examples/with-react-hook-form/.gitignore
new file mode 100644
index 0000000000000..e3b3fe7726885
--- /dev/null
+++ b/examples/with-react-hook-form/.gitignore
@@ -0,0 +1,34 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+
+# production
+/build
+
+# misc
+.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# local env files
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
+
+# vercel
+.vercel
\ No newline at end of file
diff --git a/examples/with-react-hook-form/README.md b/examples/with-react-hook-form/README.md
new file mode 100644
index 0000000000000..20ef12175a311
--- /dev/null
+++ b/examples/with-react-hook-form/README.md
@@ -0,0 +1,23 @@
+# with react-hook-form
+
+This example shows how to integrate react-hook-form in Next.js
+
+Form handling doesn't have to be painful. React Hook Form will help you write less code while achieving better performance. For more information, see [react-hook-form](https://react-hook-form.com)
+
+## Deploy your own
+
+Deploy the example using [Vercel](https://vercel.com/now):
+
+[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/git/external?repository-url=https://github.com/vercel/next.js/tree/canary/examples/with-react-hook-form&project-name=with-react-hook-form&repository-name=with-react-hook-form)
+
+## How to use
+
+Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app) with [npm](https://docs.npmjs.com/cli/init) or [Yarn](https://yarnpkg.com/lang/en/docs/cli/create/) to bootstrap the example:
+
+```bash
+npx create-next-app --example with-react-hook-form with-react-hook-form-app
+# or
+yarn create next-app --example with-react-hook-form with-react-hook-form-app
+```
+
+Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)).
diff --git a/examples/with-react-hook-form/package.json b/examples/with-react-hook-form/package.json
new file mode 100644
index 0000000000000..60fa4a2191e6d
--- /dev/null
+++ b/examples/with-react-hook-form/package.json
@@ -0,0 +1,16 @@
+{
+ "name": "with-react-hook-form",
+ "version": "1.0.0",
+ "scripts": {
+ "dev": "next dev",
+ "build": "next build",
+ "start": "next start"
+ },
+ "dependencies": {
+ "next": "latest",
+ "react": "17.0.1",
+ "react-dom": "17.0.1",
+ "react-hook-form": "7.4.0"
+ },
+ "license": "MIT"
+}
diff --git a/examples/with-react-hook-form/pages/_app.js b/examples/with-react-hook-form/pages/_app.js
new file mode 100644
index 0000000000000..0bd950249faeb
--- /dev/null
+++ b/examples/with-react-hook-form/pages/_app.js
@@ -0,0 +1,5 @@
+import '../styles/global.css'
+
+export default function MyApp({ Component, pageProps }) {
+ return