You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
575 B
32 lines
575 B
7 years ago
|
import React from 'react'
|
||
|
import PropTypes from 'prop-types'
|
||
|
import classnames from 'classnames'
|
||
|
|
||
|
const Tab = props => {
|
||
|
const { name, onClick, isActive, tabIndex } = props
|
||
|
|
||
|
return (
|
||
|
<li
|
||
|
className={classnames(
|
||
|
'tab',
|
||
|
isActive && 'tab--active',
|
||
|
)}
|
||
|
onClick={event => {
|
||
|
event.preventDefault()
|
||
|
onClick(tabIndex)
|
||
|
}}
|
||
|
>
|
||
|
{ name }
|
||
|
</li>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
Tab.propTypes = {
|
||
|
name: PropTypes.string.isRequired,
|
||
|
onClick: PropTypes.func,
|
||
|
isActive: PropTypes.bool,
|
||
|
tabIndex: PropTypes.number,
|
||
|
}
|
||
|
|
||
|
export default Tab
|