diff --git a/src/App.js b/src/App.js index 03c2f77..3f41e13 100644 --- a/src/App.js +++ b/src/App.js @@ -16,6 +16,7 @@ import PackageDashboardPageContainer from './components/PackageDashboard/Package import FilenameValidationPageContainer from './components/Validation/FilenameValidationPageContainer'; import PermissionDenied from './components/Error/PermissionDenied'; import NotRegistered from './components/Error/NotRegistered'; +import BulkUploadContainer from './components/Upload/BulkUploadContainer'; const cacheStore = window.sessionStorage.getItem('redux-store'); const initialState = cacheStore ? JSON.parse(cacheStore) : loadedState; @@ -66,6 +67,7 @@ class App extends Component { + diff --git a/src/components/Upload/BulkUpload.js b/src/components/Upload/BulkUpload.js new file mode 100644 index 0000000..e0bfd18 --- /dev/null +++ b/src/components/Upload/BulkUpload.js @@ -0,0 +1,12 @@ +import React, { Component } from 'react'; + +class BulkUpload extends Component { + render() { + return ( +
+

Welcome to the Bulk Upload page!

+
+ ); + } +} +export default BulkUpload; \ No newline at end of file diff --git a/src/components/Upload/BulkUploadContainer.js b/src/components/Upload/BulkUploadContainer.js new file mode 100644 index 0000000..c41cb24 --- /dev/null +++ b/src/components/Upload/BulkUploadContainer.js @@ -0,0 +1,12 @@ +import { connect } from 'react-redux' +import BulkUpload from './BulkUpload'; + +const mapStateToProps = (state, props) => ({ + +}); + +const mapDispatchToProps = (dispatch, props) => ({ + +}); + +export default connect(mapStateToProps, mapDispatchToProps)(BulkUpload); \ No newline at end of file