add sell and buy orders list

This commit is contained in:
João Geonizeli
2021-08-15 18:02:06 -03:00
parent 29175f14b0
commit 64bc21195c
17 changed files with 1185 additions and 235 deletions

View File

@@ -0,0 +1,5 @@
export const centsToUnit = (value?: number | null) => {
if (!value) return "0.00";
return (value / 100).toFixed(2);
};