10 lines
169 B

<h1>Hello {{$name}}!</h1>
<TextInput bind:value=$name/>
<script>
import TextInput from './TextInput.html';
export default {
components: { TextInput }
};
</script>