forked from coracle/flotilla
12 lines
190 B
Svelte
12 lines
190 B
Svelte
<script lang="ts">
|
|
import {displayCurrencyByCode} from "@lib/currency"
|
|
|
|
type Props = {
|
|
value: string
|
|
}
|
|
|
|
const {value}: Props = $props()
|
|
</script>
|
|
|
|
{displayCurrencyByCode(value)}
|