Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/gillstrom/deku-tabs
- Owner: gillstrom
- License: mit
- Created: 2015-10-09T17:09:42.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-29T13:03:38.000Z (about 7 years ago)
- Last Synced: 2024-03-15T19:41:36.498Z (8 months ago)
- Language: JavaScript
- Homepage: http://tabs.surge.sh
- Size: 17.6 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
- awesome-deku - deku-tabs - Simple tab component for deku (Components)
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)