components.widgets.Tree.component.ExpandBtn.jsx Maven / Gradle / Ivy
The newest version!
import React from 'react'
import PropTypes from 'prop-types'
function ExpandBtn({ onShowAll, onHideAll }) {
return (
)
}
ExpandBtn.propTypes = {
onShowAll: PropTypes.func,
onHideAll: PropTypes.func,
}
export default ExpandBtn