1.0.5 • Published 4 years ago

@khoatran1996/tabs v1.0.5

Weekly downloads
7
License
MIT
Repository
-
Last release
4 years ago

Tabs

Simple Tabs component

Image Screen Shot

Usage

API

  1. Tabs
PropertiesDescriptionRequired
activeTabDefault active TabFalse
  1. TabPane
PropertiesDescriptionRequired
tabName of TabTrue

Code

export default class App extends Component {
    constructor(props) {
        super(props);
    }

    render() {
        return (<Tabs activeTab={"Tab2"}>
            <TabPane tab="Tab1">
                Hello this is Tab1
            </TabPane>
            <TabPane tab="Tab2">
                Hello this is Tab2
            </TabPane>
            <TabPane tab="Tab3">
                Hello this is Tab3
            </TabPane>
        </Tabs>);
    }
};