@@ -0,0 +1,8 @@
+// !!
+// not sure where to put the utility functions
+// so put them here temporarely
+
+export const getCurrentWeekNumber = (date: Date) => {
+ const d = new Date(Date.UTC(date.getFullYear(), date.getMonth(), date.getDate()));
+};