a simple tab component
npm install react-tab-view

react-tab-view is a simple tabs component using react.js.
yarn add react-tab-view
``jsx
import { Tabs, Tab } from 'react-tab-view'
import ReactDOM from 'react-dom'
import React, { Component } from 'react'
class TestComponent extends Component {
handleChange(e) {
this.setState({ value: e })
console.log(e)
}
render() {
const headers = ['Heading 1', 'Heading 2', 'Heading 3']
return (
This is the first tab
with some content
This is the second tab
This is the third tab
ReactDOM.render(
``