refs #master Merge branch 'origin/master' into 13828-trash-view
[arvados-workbench2.git] / src / views / workbench / workbench.tsx
index ef5fe215290e4e33dfac8988840d0cb4740ed83d..ea3a278bf9090cbe73b29a2a0b64f4b357d6e399 100644 (file)
@@ -39,6 +39,9 @@ import { MoveCollectionDialog } from '~/views-components/dialog-forms/move-colle
 import { FilesUploadCollectionDialog } from '~/views-components/dialog-forms/files-upload-collection-dialog';
 import { PartialCopyCollectionDialog } from '~/views-components/dialog-forms/partial-copy-collection-dialog';
 
+import { TrashPanel } from "~/views/trash-panel/trash-panel";
+import { trashPanelActions } from "~/store/trash-panel/trash-panel-action";
+
 const APP_BAR_HEIGHT = 100;
 
 type CssRules = 'root' | 'appBar' | 'content' | 'contentWrapper';
@@ -167,6 +170,7 @@ export const Workbench = withStyles(styles)(
                                     <Route path={Routes.COLLECTIONS} component={CollectionPanel} />
                                     <Route path={Routes.FAVORITES} component={FavoritePanel} />
                                     <Route path={Routes.PROCESSES} component={ProcessPanel} />
+                                    <Route path="/trash" render={this.renderTrashPanel} />
                                 </Switch>
                             </div>
                             {user && <DetailsPanel />}