mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 23:35:59 +00:00
16 lines
202 B
Svelte
16 lines
202 B
Svelte
<script lang="ts">
|
|
import Markdown from '../elements/Markdown.svelte';
|
|
|
|
export let text: string;
|
|
</script>
|
|
|
|
<div>
|
|
<Markdown source={text} />
|
|
</div>
|
|
|
|
<style>
|
|
div {
|
|
margin: 10px;
|
|
}
|
|
</style>
|