mirror of
https://github.com/Unleash/unleash.git
synced 2025-11-24 20:06:55 +01:00
11 lines
304 B
JavaScript
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);
|