UNPKG

@helpscout/artboard

Version:

A tool kit for React UI development and design

16 lines (12 loc) 356 B
import {connect} from 'react-redux' import {ContentUI} from '../Artboard.css' import {cx} from '../../utils' const mapStateToProps = state => { const {alignHorizontally, alignVertically} = state return { alignHorizontally, alignVertically, className: cx('ArtboardCanvasContent'), } } export default connect(mapStateToProps)(ContentUI)