Skip to content

Commit

Permalink
Created organization tasks page with proper styles, need to add test …
Browse files Browse the repository at this point in the history
…later, resolves #151
  • Loading branch information
LukasKri committed May 9, 2021
1 parent 0996a56 commit 7ac7233
Show file tree
Hide file tree
Showing 5 changed files with 618 additions and 437 deletions.
5 changes: 5 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ export default function App() {
path="/animal/:id"
component={React.lazy(() => import('./pages/AnimalDetailsPage'))}
/>
<PrivateRoute
exact
path="/organization-tasks"
component={React.lazy(() => import('./pages/OrganizationTasksPage'))}
/>
<Route
exact
path="/search"
Expand Down
8 changes: 8 additions & 0 deletions src/graphql/queries/organization-tasks.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
query GetOrganizationTasks {
organizationTasks {
id
title
description
isDone
}
}
Loading

0 comments on commit 7ac7233

Please sign in to comment.