fix(erp): enable erp pages and menu items
This commit is contained in:
10
front-end-agency/lib/format.ts
Normal file
10
front-end-agency/lib/format.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export const formatCurrency = (value: number | string) => {
|
||||
return new Intl.NumberFormat('pt-BR', {
|
||||
style: 'currency',
|
||||
currency: 'BRL',
|
||||
}).format(Number(value));
|
||||
};
|
||||
|
||||
export const formatDate = (date: string | Date) => {
|
||||
return new Intl.DateTimeFormat('pt-BR').format(new Date(date));
|
||||
};
|
||||
Reference in New Issue
Block a user