Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -66,6 +67,7 @@ class App extends Component {
<Switch>
<Route exact path='/' component={PackageDashboardPageContainer} store={store} />
<Route exact path='/filenameValidation' component={FilenameValidationPageContainer} store={store}/>
<Route exact path='/bulkUpload' component={BulkUploadContainer} store={store}/>
<Route exact path='/oops' component={Oops} />
<Route exact path='/permissionDenied' component={PermissionDenied} />
<Route exact path='/notRegistered' component={NotRegistered} />
Expand Down
12 changes: 12 additions & 0 deletions src/components/Upload/BulkUpload.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React, { Component } from 'react';

class BulkUpload extends Component {
render() {
return (
<div>
<h1>Welcome to the Bulk Upload page!</h1>
</div>
);
}
}
export default BulkUpload;
12 changes: 12 additions & 0 deletions src/components/Upload/BulkUploadContainer.js
Original file line number Diff line number Diff line change
@@ -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);
Loading