UNPKG

reactui

Version:

A components library for ReactJS. This is part of the Gearz project

25 lines (20 loc) 535 B
"use strict"; var React = require("react"); var gearzMixin = require("../../gearz.mixin"); var Tab = React.createClass({ displayName: "Tab", mixins: [gearzMixin], propTypes: { // the tab name name: React.PropTypes.string.isRequired, // the tab display name displayName: React.PropTypes.string.isRequired }, render: function render() { return React.createElement( "div", null, this.props.children ); } }); module.exports = Tab;