spee.ch/react/components/AssetTitle/index.js
2018-02-14 12:30:30 -08:00

14 lines
325 B
JavaScript

import { connect } from 'react-redux';
import View from './view';
import selectAsset from 'selectors/asset';
const mapStateToProps = ({ show }) => {
// select title
const { claimData: { title } } = selectAsset(show);
// return props
return {
title,
};
};
export default connect(mapStateToProps, null)(View);