mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
re-structure to monorepo.
This commit is contained in:
9
packages/webapp/src/components/Money/Money.tsx
Normal file
9
packages/webapp/src/components/Money/Money.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
// @ts-nocheck
|
||||
import React from 'react';
|
||||
import { formattedAmount } from '@/utils';
|
||||
|
||||
export function Money({ amount, currency }) {
|
||||
return (
|
||||
<span>{ formattedAmount(amount, currency) }</span>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user