mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
11 lines
204 B
JavaScript
11 lines
204 B
JavaScript
import React from 'react';
|
|
import { CurrencyTag } from 'components';
|
|
|
|
/**
|
|
* base currecncy.
|
|
* @returns
|
|
*/
|
|
export function BaseCurrency({ currency }) {
|
|
return <CurrencyTag>{currency}</CurrencyTag>;
|
|
}
|