This brings us to the end of our initial look at Svelte, including how to install it locally, create a starter app, and how the basics work. In the next article we'll start building our first proper application, a todo list. Before we do that, however, let's recap some of the things we've learned....the following: html <script> export let name; </script> <main>...<script> export let name; </script> Svelte uses the export keyword...