# deku-tabs

> Simple tab component for deku

Latest version **4.3.0** (published 2017-01-09) · MIT license · 0 weekly downloads

## Install

```sh
npm install deku-tabs
pnpm add deku-tabs
yarn add deku-tabs
bun add deku-tabs
```

## 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 | 4.3.0 |
| Published | 2017-01-09 |
| First published | 2015-10-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.10.0 |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Andreas Gillström |
| Maintainers | gillstrom, kevva |
| Keywords | component, deku, dekujs, deku-component, tab, tabs |

## Links

- npm: https://www.npmjs.com/package/deku-tabs
- Repository: https://github.com/gillstrom/deku-tabs
- Homepage: https://github.com/gillstrom/deku-tabs#readme
- Issues: https://github.com/gillstrom/deku-tabs/issues
- npm.io page: https://npm.io/package/deku-tabs

## Dependencies (3)

- [deep-equal](https://npm.io/package/deep-equal.md) ^1.0.1
- [object-assign](https://npm.io/package/object-assign.md) ^4.1.0
- [magic-virtual-element](https://npm.io/package/magic-virtual-element.md) ^1.0.6

## Alternatives

- [@lexical/table](https://npm.io/package/@lexical/table.md) — 3.0M weekly downloads
- [mantine-datatable](https://npm.io/package/mantine-datatable.md) — 98.2K weekly downloads
- [react-native-collapsible-tab-view](https://npm.io/package/react-native-collapsible-tab-view.md) — 70.6K weekly downloads
- [@handsontable/vue3](https://npm.io/package/@handsontable/vue3.md) — 16.1K weekly downloads
- [vuewordcloud](https://npm.io/package/vuewordcloud.md) — 7.2K weekly downloads

## Recent versions

- 4.3.0 (latest) — 2017-01-09
- 4.2.1 — 2016-06-07
- 4.2.0 — 2016-06-07
- 4.1.0 — 2016-06-02
- 4.0.0 — 2016-02-10
- 3.0.1 — 2016-01-03
- 3.0.0 — 2015-12-09
- 2.1.1 — 2015-11-17
- 2.1.0 — 2015-11-17
- 2.0.0 — 2015-11-02
- 1.0.1 — 2015-10-09
- 1.0.0 — 2015-10-09

## README

# deku-tabs [![Build Status](https://travis-ci.org/gillstrom/deku-tabs.svg?branch=master)](https://travis-ci.org/gillstrom/deku-tabs)

> Simple tab component for [deku](https://github.com/dekujs/deku)


## Install

```
$ npm install --save deku-tabs
```


## Usage

```js
import Tabs from 'deku-tabs';

export function render() {
	const items = [{
		content: <div>Content 1</div>,
		heading: 'Heading 1'
	}, {
		active: true,
		content: <div>Content 2</div>,
		heading: 'Heading 2'
	}, {
		content: <div>Content 3</div>,
		heading: 'Heading 3'
	}];

	return (
		<Tabs items={items}/>
	);
}
```


## License

MIT © [Andreas Gillström](http://github.com/gillstrom)

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