mirror of https://github.com/sveltejs/svelte
parent
9c1d17e51f
commit
f68d6af173
@ -0,0 +1,5 @@
|
||||
import { test } from '../../test';
|
||||
|
||||
export default test({
|
||||
html: '<template><p>hello world</p></template>'
|
||||
});
|
||||
@ -0,0 +1,7 @@
|
||||
<script lang="ts">
|
||||
let greet = $state('hello world');
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<p>{greet}</p>
|
||||
</template>
|
||||
Loading…
Reference in new issue