rsnext/examples/active-class-name
Balázs Orbán c04a6b04f2
chore(examples): fix active-class-name example (#37828)
## Bug

- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have helpful link attached, see `contributing.md`

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR.
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.
- [ ] Errors have helpful link attached, see `contributing.md`

## Documentation / Examples

- [ ] Make sure the linting passes by running `pnpm lint`
- [ ] The examples guidelines are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing.md#adding-examples)
2022-06-21 15:44:29 +00:00
..
components Convert active-class-name example to TypeScript (#37676) 2022-06-14 08:49:09 +00:00
pages Convert active-class-name example to TypeScript (#37676) 2022-06-14 08:49:09 +00:00
.gitignore Added .gitignore to examples that are deployed to vercel (#15127) 2020-07-16 10:52:23 -04:00
next-env.d.ts Convert active-class-name example to TypeScript (#37676) 2022-06-14 08:49:09 +00:00
next.config.js Update examples/active-class-name (#34205) 2022-02-11 00:51:56 +00:00
package.json chore(examples): fix active-class-name example (#37828) 2022-06-21 15:44:29 +00:00
README.md Update pnpm create next-app for latest pnpm 6 and 7 (#37254) 2022-05-27 21:21:40 +00:00
tsconfig.json Convert active-class-name example to TypeScript (#37676) 2022-06-14 08:49:09 +00:00

activeClassName example

ReactRouter has a convenience property on the Link element to allow an author to set the active className on a link. This example replicates that functionality using Next's own Link.

Deploy your own

Deploy the example using Vercel or preview live with StackBlitz

Deploy with Vercel

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example active-class-name active-class-name-app
# or
yarn create next-app --example active-class-name active-class-name-app
# or
pnpm create next-app --example active-class-name active-class-name-app

Deploy it to the cloud with Vercel (Documentation).