feat: build basic integration with snoop-react to post submissions to snoopHub, modify schema accordingly to support schema and submission, add basic display of submissions

This commit is contained in:
Matthias Nannt
2022-06-09 23:53:26 +09:00
parent 9ca243b8c7
commit 0d671a86d5
20 changed files with 294 additions and 124 deletions
+2
View File
@@ -1,3 +1,5 @@
export const fetcher = (url) => fetch(url).then((res) => res.json());
export const shuffle = (array) => {
array = [...array];
let currentIndex = array.length,