dashboard-delight / script.js
praven2's picture
Create a app using vite react js and show dashboard screen
e01e648 verified
raw
history blame contribute delete
377 Bytes
// Shared utility functions can go here
export const formatCurrency = (value) => {
return new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD'
}).format(value);
};
export const formatDate = (dateString) => {
const options = { year: 'numeric', month: 'short', day: 'numeric' };
return new Date(dateString).toLocaleDateString('en-US', options);
};