Adds notification list to orgs

This commit is contained in:
mabashian
2019-01-21 13:13:09 -05:00
parent 3060abab1d
commit 58f99c8918
15 changed files with 870 additions and 80 deletions

View File

@@ -2,10 +2,10 @@ import React from 'react';
import { Route, Switch } from 'react-router-dom';
import OrganizationsList from './screens/OrganizationsList';
import OrganizationAdd from './screens/OrganizationAdd'
import OrganizationAdd from './screens/OrganizationAdd';
import Organization from './screens/Organization/Organization';
export default ({ api, match }) => (
export default ({ api, match, history }) => (
<Switch>
<Route
path={`${match.path}/add`}
@@ -20,6 +20,7 @@ export default ({ api, match }) => (
render={() => (
<Organization
api={api}
history={history}
/>
)}
/>