mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
10 lines
181 B
JavaScript
10 lines
181 B
JavaScript
import { connect } from 'react-redux';
|
|
|
|
|
|
const mapStateToProps = (state) => {
|
|
return {
|
|
globalErrors: state.globalErrors.data,
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps); |