GSA/code-gov-front-end

View on GitHub
src/components/home-about/home-about.container.js

Summary

Maintainability
A
0 mins
Test Coverage
import { connect } from 'react-redux'
import { getConfigValue } from 'utils/other'
import HomeAboutComponent from './home-about.component'

export const mapStateToProps = () => ({
  aboutus: getConfigValue('content.home.aboutus'),
  mission: getConfigValue('content.home.mission'),
  vision: getConfigValue('content.home.vision')
})

export default connect(mapStateToProps)(HomeAboutComponent)