GSA/code-gov-front-end

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

Summary

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

export const mapStateToProps = () => ({
  newsItems: getConfigValue('content.home.news')
})

export default connect(mapStateToProps)(HomeNews)