UNPKG

@helpscout/artboard

Version:

A tool kit for React UI development and design

13 lines (9 loc) 262 B
import {connect} from 'react-redux' import BoxInspector from '../../BoxInspector' const mapStateToProps = state => { const {showBoxInspector} = state return { showOutlines: showBoxInspector, } } export default connect(mapStateToProps)(BoxInspector)