# react-vertical-menu

> Simple and lightweight React menu

Latest version **1.1.3** (published 2018-01-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-vertical-menu
pnpm add react-vertical-menu
yarn add react-vertical-menu
bun add react-vertical-menu
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.3 |
| Published | 2018-01-22 |
| First published | 2018-01-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 6 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Abhishek Saha |
| Maintainers | ajaxtown |
| Keywords | react, reactjs, menu, reload, live, edit, webpack |

## Links

- npm: https://www.npmjs.com/package/react-vertical-menu
- Repository: https://github.com/ajaxtown/React-Vertical-Menu
- Issues: https://github.com/ajaxtown/React-Vertical-Menu/issues
- npm.io page: https://npm.io/package/react-vertical-menu

## Dependencies (6)

- [react](https://npm.io/package/react.md) ^15.5.4
- [react-dom](https://npm.io/package/react-dom.md) ^15.5.4
- [babel-loader](https://npm.io/package/babel-loader.md) ^7.0.0
- [react-router](https://npm.io/package/react-router.md) ^4.2.0
- [compression-webpack-plugin](https://npm.io/package/compression-webpack-plugin.md) ^1.1.3
- [extract-text-webpack-plugin](https://npm.io/package/extract-text-webpack-plugin.md) ^3.0.2

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 1.1.3 (latest) — 2018-01-22
- 1.1.2 — 2018-01-22
- 1.1.1 — 2018-01-22
- 1.1.0 — 2018-01-22
- 1.0.1 — 2018-01-22
- 1.0.0 — 2018-01-22

## README

# React-Vertical-Menu

Creates a vertical menu with children

```
import Menu from "react-vertical-menu";
require("/node_module/react-vertical-menu/dist/style.css");

const data = [
    {
        id: 1,
        label: "Home",
        slug: "home",
        icon: "glyphicon glyphicon-home"
    },
    {
        id: 2,
        label: "Settings",
        icon: "glyphicon glyphicon-cog",
        collapsed: true,
        children: [
            {
                id: 3,
                label: "Themes",
                slug: "home/themes",
                icon: "glyphicon glyphicon-th"
            }
        ]
    },
    {
        id: 4,
        label: "About",
        slug: "about",
        icon: "glyphicon glyphicon-book"
    }
];

<Menu data={data} selected="home" />
```

---
_Source: https://npm.io/package/react-vertical-menu · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
