X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/78fd0936352c6f50f06bd0c6f9973bccc1ac0d51..7afc443a21879751d8afd8ec36a3ae993d98b85a:/src/views-components/side-panel/side-panel.tsx diff --git a/src/views-components/side-panel/side-panel.tsx b/src/views-components/side-panel/side-panel.tsx index fffe3344..12e82dfb 100644 --- a/src/views-components/side-panel/side-panel.tsx +++ b/src/views-components/side-panel/side-panel.tsx @@ -11,6 +11,7 @@ import { connect } from 'react-redux'; import { navigateFromSidePanel } from '../../store/side-panel/side-panel-action'; import { Grid } from '@material-ui/core'; import { SidePanelButton } from '~/views-components/side-panel-button/side-panel-button'; +import { RootState } from '~/store/store'; const DRAWER_WITDH = 240; @@ -32,11 +33,14 @@ const mapDispatchToProps = (dispatch: Dispatch): SidePanelTreeProps => ({ } }); -export const SidePanel = compose( - withStyles(styles), - connect(undefined, mapDispatchToProps) -)(({ classes, ...props }: WithStyles & SidePanelTreeProps) => +const mapStateToProps = (state: RootState) => ({ +}); + +export const SidePanel = withStyles(styles)( + connect(mapStateToProps, mapDispatchToProps)( + ({ classes, ...props }: WithStyles & SidePanelTreeProps) => - ); \ No newline at end of file + +));