2019-08-06 05:25:33 +02:00
|
|
|
import { connect } from 'react-redux';
|
2021-10-17 10:36:14 +02:00
|
|
|
import { makeSelectClaimForUri, makeSelectContentTypeForUri } from 'redux/selectors/claims';
|
2019-08-06 05:25:33 +02:00
|
|
|
import AppViewer from './view';
|
|
|
|
|
|
|
|
const select = (state, props) => ({
|
|
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
|
|
|
contentType: makeSelectContentTypeForUri(props.uri)(state),
|
|
|
|
});
|
|
|
|
|
2021-10-17 10:36:14 +02:00
|
|
|
const perform = (dispatch) => ({});
|
2019-08-06 05:25:33 +02:00
|
|
|
|
2021-10-17 10:36:14 +02:00
|
|
|
export default connect(select, perform)(AppViewer);
|