mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-23 12:52:24 +02:00
15 lines
196 B
Svelte
15 lines
196 B
Svelte
<script lang="ts">
|
|
export let content: any
|
|
</script>
|
|
|
|
<pre>
|
|
{JSON.stringify(content, undefined, 2)}
|
|
</pre>
|
|
|
|
<style lang="scss">
|
|
pre {
|
|
overflow: auto;
|
|
max-height: 500px;
|
|
}
|
|
</style>
|