spee.ch/react/components/AssetTitle/index.js

15 lines
328 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import View from './view';
2018-02-14 18:02:10 -08:00
import { selectAsset } from 'selectors/show';
const mapStateToProps = ({ show }) => {
// select title
2018-02-14 12:30:30 -08:00
const { claimData: { title } } = selectAsset(show);
2018-02-12 20:01:02 -08:00
// return props
return {
title,
};
};
export default connect(mapStateToProps, null)(View);