10 lines
234 B
JavaScript
10 lines
234 B
JavaScript
import { connect } from 'react-redux';
|
|
import View from './view';
|
|
|
|
const mapStateToProps = ({site: {defaults: { defaultThumbnail }}}) => {
|
|
return {
|
|
defaultThumbnail,
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps, null)(View);
|