Skip to content

Commit

Permalink
Merge pull request #438 from KPMP/KPMP-4421_break-blank-viz-page
Browse files Browse the repository at this point in the history
KPMP-4421_break-blank-viz-page
  • Loading branch information
rlreamy authored Oct 27, 2023
2 parents 57e9433 + 0bd59d2 commit b1663dd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import RegionalVizContainer from "./components/DataViz/RegionalVizContainer";
import packageInfo from '../package.json';
import { PrivateUmapRoute } from './PrivateRoutes';
import UMAPContainer from './components/DataViz/UMAPContainer';
import RegionalProteomics from './components/DataViz/RegionalProteomics';

const cacheStore = window.sessionStorage.getItem('redux-store');
const initialState = cacheStore ? JSON.parse(cacheStore) : loadedState;
Expand Down Expand Up @@ -78,6 +79,7 @@ class App extends Component {
<Route exact path='/explorer/dataViz' component={RNASeqVizContainer} store={store} />
<Route exact path='/explorer/regionalviz' component={RegionalVizContainer} store={store} />
<Route exact path='/explorer/diffex' component={DiffexByClusterContainer} store={store} />
<Route exact path='/explorer/regionalpro' component={RegionalProteomics} store={store}/>
<Route exact path='/oops' component={Oops} />
<PrivateUmapRoute exact path='/explorer/dataViz/umap' component={UMAPContainer} store={store} />
<Route path='*' component={NotFoundPage} />
Expand Down
13 changes: 13 additions & 0 deletions src/components/DataViz/RegionalProteomics.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React, { Component } from 'react';

class RegionalProteomics extends Component {
render() {
return (
<div className='height-wrapper mb-3 mt-3'>
<h1>Blank Regional Proteomics page!</h1>
</div>
)
}
}

export default RegionalProteomics;

0 comments on commit b1663dd

Please sign in to comment.