Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gillstrom/deku-tabs

Simple tab component for deku
https://github.com/gillstrom/deku-tabs

Last synced: 3 months ago
JSON representation

Simple tab component for deku

Awesome Lists containing this project

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:

Content 1
,
heading: 'Heading 1'
}, {
active: true,
content:
Content 2
,
heading: 'Heading 2'
}, {
content:
Content 3
,
heading: 'Heading 3'
}];

return (

);
}
```

## License

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