Socket
Book a DemoInstallSign in
Socket

deku-tabs

Package Overview
Dependencies
Maintainers
2
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deku-tabs

Simple tab component for deku

latest
Source
npmnpm
Version
4.3.0
Version published
Maintainers
2
Created
Source

deku-tabs Build Status

Simple tab component for deku

Install

$ npm install --save deku-tabs

Usage

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

Keywords

component

FAQs

Package last updated on 09 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts