mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
import { connect } from 'react-redux';
|
|
import { getItemById } from 'store/items/items.reducer';
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
itemDetail: getItemById(state, props.itemId),
|
|
});
|
|
|
|
export default connect(mapStateToProps);
|