-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature - Added temporary database connection (#40)
* feat - Added date selector elements * refactor - Moved graph generation code into seperate jsx file * feat - Added dynamic graph generation * feat - Implemented responsive progress graph, does not currently fetch information from database * feat - Added data utils class * feat - Added temporary get request
- Loading branch information
Showing
2 changed files
with
19 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export default async function getData(path, method) { | ||
const response = await fetch('http://localhost:4001' + path, {method: method}); | ||
return response; | ||
} |