Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #44. Added React Modal! #206

Open
wants to merge 10 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Next Next commit
fixed whitespace errors
Greg committed Jun 19, 2018
commit 14066a75d5f28e333f4ca463ecf6ee9b52b9ee6d
14 changes: 7 additions & 7 deletions src/components/Content/Pursuance/PursuancePage.js
Original file line number Diff line number Diff line change
@@ -70,15 +70,15 @@ class PursuancePage extends Component {
<nav id="pursuance-nav">
<PursuanceMenu />
</nav>
<article >
<article>
<Switch>
<Route exact path="/pursuance/:pursuanceId" component={TaskListView} />
<Route exact path="/pursuance/:pursuanceId/tasks" component={TaskListView} />
<Route exact path="/pursuance/:pursuanceId/calendar" component={CalendarView} />
<Route exact path="/pursuance/:pursuanceId/discuss/task/:taskGid" component={DiscussView} />
<Route exact path="/pursuance/:pursuanceId/participants" component={ParticipantsView} />
<Route exact path="/pursuance/:pursuanceId" component={TaskListView} />
<Route exact path="/pursuance/:pursuanceId/tasks" component={TaskListView} />
<Route exact path="/pursuance/:pursuanceId/calendar" component={CalendarView} />
<Route exact path="/pursuance/:pursuanceId/discuss/task/:taskGid" component={DiscussView} />
<Route exact path="/pursuance/:pursuanceId/participants" component={ParticipantsView} />
</Switch>
<RightPanel />
<RightPanel />
</article>
</div>
</Router>