generateur_v3/frontend/src/components/forms/SelectedItem.svelte

15 lines
213 B
Svelte

<script lang='ts'>
import chroma from 'chroma-js'
export let option: {label: string, color: string};
export let idx;
</script>
{option.label} {option.color}
<button>test</button>
<style>
</style>