diff --git a/src/App.js b/src/App.js index 8bf4e8fd..a144ded1 100644 --- a/src/App.js +++ b/src/App.js @@ -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; @@ -78,6 +79,7 @@ class App extends Component { + diff --git a/src/components/DataViz/RegionalProteomics.js b/src/components/DataViz/RegionalProteomics.js new file mode 100644 index 00000000..a0e4e510 --- /dev/null +++ b/src/components/DataViz/RegionalProteomics.js @@ -0,0 +1,13 @@ +import React, { Component } from 'react'; + +class RegionalProteomics extends Component { + render() { + return ( +
+

Blank Regional Proteomics page!

+
+ ) + } +} + +export default RegionalProteomics;