[REPO REFACTOR]: changed to a better git repository structure with branches

This commit is contained in:
2025-11-01 04:00:11 +01:00
parent 02926320da
commit 1c8efeca66
83 changed files with 3563 additions and 0 deletions

7
src/util/tokenUtils.js Normal file
View File

@@ -0,0 +1,7 @@
export const parseJwt = (token) => {
try {
return JSON.parse(atob(token.split('.')[1]));
} catch (e) {
return null;
}
};