forked from MapComplete/MapComplete
10 lines
209 B
Svelte
10 lines
209 B
Svelte
<script lang="ts">
|
|
import { UIEventSource } from "../../../Logic/UIEventSource"
|
|
|
|
/**
|
|
* Simply shows the image
|
|
*/
|
|
export let value: UIEventSource<undefined | string>
|
|
</script>
|
|
|
|
<img src={$value} />
|