mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 15:56:00 +00:00
11 lines
116 B
Svelte
11 lines
116 B
Svelte
<script lang="ts">
|
|
export let text: string;
|
|
</script>
|
|
|
|
<p>{text}</p>
|
|
|
|
<style>
|
|
p {
|
|
margin: 10px;
|
|
}
|
|
</style> |