login endpoint added

This commit is contained in:
victorAnumudu
2025-04-16 18:41:36 +01:00
parent a935f8d18b
commit 0cc57a3d1d
8 changed files with 199 additions and 121 deletions
+6
View File
@@ -0,0 +1,6 @@
const formatNumber = (number = 0) => {
// return new Intl.NumberFormat().format(number);
return number.toFixed(2);
};
export default formatNumber