6 lines
82 B
Svelte
6 lines
82 B
Svelte
<script>
|
|
export let json;
|
|
</script>
|
|
|
|
<pre>{JSON.stringify(json, null, 2)}</pre>
|