kabisa/kudos-frontend

View on GitHub
src/ui/Currency/index.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
type CurrencyProps = {
  amount: number;
};

const Currency = ({ amount }: CurrencyProps) => <>{amount}₭</>;


export default Currency;