mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-30 18:34:01 +00:00
10 lines
184 B
Svelte
10 lines
184 B
Svelte
<script lang="ts">
|
|
import XmlHighlighter from './XmlHighlighter.svelte';
|
|
|
|
export let selection;
|
|
</script>
|
|
|
|
{#each selection as cell}
|
|
<XmlHighlighter code={cell.value} />
|
|
{/each}
|