2017-06-21 17:45:06 +00:00
[![Deploy to now ](https://deploy.now.sh/static/button.svg )](https://deploy.now.sh/?repo=https://github.com/zeit/next.js/tree/master/examples/with-higher-order-component)
# Higher Order Component example
## How to use
2017-12-03 04:30:17 +00:00
### Using `create-next-app`
2018-02-24 12:04:17 +00:00
Download [`create-next-app` ](https://github.com/segmentio/create-next-app ) to
bootstrap the example:
2017-12-03 04:30:17 +00:00
2018-03-14 08:09:46 +00:00
```bash
npx create-next-app --example with-higher-order-component with-higher-order-component-app
# or
yarn create next-app --example with-higher-order-component with-higher-order-component-app
2017-12-03 04:30:17 +00:00
```
### Download manually
2018-07-11 21:56:15 +00:00
Download the example:
2017-06-21 17:45:06 +00:00
Install it and run:
**npm**
2018-02-24 12:04:17 +00:00
2017-06-21 17:45:06 +00:00
```bash
npm install
npm run dev
2018-04-03 12:19:05 +00:00
# or
yarn
yarn dev
2017-06-21 17:45:06 +00:00
```
**yarn**
2018-02-24 12:04:17 +00:00
2017-06-21 17:45:06 +00:00
```bash
npm install
npm run dev
```
2018-02-24 12:04:17 +00:00
Deploy it to the cloud with [now ](https://zeit.co/now )
([download](https://zeit.co/download))
2017-06-21 17:45:06 +00:00
```bash
now
```
## About example
This example show you how to create Higher Order Component in next.js