Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const mapStateToProps = ( state ) => ({
panes: state.project.appPanels.suite.panes,
expandedGroups: state.project.groups,
groups: state.suite.groups,
targets: state.suite.targets,
targetDataTable: selectors.getSuiteTargetDataTableMemoized( state )
}),
// Mapping actions to the propsconst mapStateToProps = ( state ) => ({
panes: state.project.appPanels.suite.panes,
expandedGroups: state.project.groups,
groups: state.suite.groups,
targets: state.suite.targets,
title: state.suite.title,
description: state.suite.description,
timeout: state.suite.timeout,
targetDataTable: selectors.getSuiteTargetDataTableMemoized( state ),
groupDataTable: selectors.getSuiteGroupsMemoized( state )
}),
// Mapping actions to the props