svelte/documentation/examples/02-props/00-declaring-props/Nested.svelte

6 lines
70 B

<script>
export let answer;
</script>
<p>The answer is {answer}</p>