Spaces:
Runtime error
Runtime error
File size: 282 Bytes
72db8a4 ca5bd83 72db8a4 ca5bd83 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<script lang="ts">
import { notesTokens } from './stores';
</script>
<section>
<h2>Tokenized notes</h2>
{#if $notesTokens}
<p>{$notesTokens}</p>
{/if}
</section>
<style>
section {
border: 2px solid hsl(0 0% 80%);
border-radius: 0.375rem;
padding: 1rem;
}
</style>
|