1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/component/api/show-api-details-container.jsx
2020-08-03 13:38:14 +02:00

11 lines
304 B
JavaScript

import { connect } from 'react-redux';
import ShowApiDetailsComponent from './show-api-details-component';
const mapDispatchToProps = {};
const mapStateToProps = state => ({
uiConfig: state.uiConfig.toJS(),
});
export default connect(mapStateToProps, mapDispatchToProps)(ShowApiDetailsComponent);