Skip to content

Instantly share code, notes, and snippets.

@talvasconcelos
Created May 15, 2020 17:38
Show Gist options
  • Save talvasconcelos/1000155e8debd3e9c7ebef4b5aab3aa4 to your computer and use it in GitHub Desktop.
Save talvasconcelos/1000155e8debd3e9c7ebef4b5aab3aa4 to your computer and use it in GitHub Desktop.
<script>
let f = () => fetch(`https://swapi.co/api/people/${Math.ceil(Math.random() * 10)+1}`).then(r => r.json()).catch(e => console.log(e))
</script>
<style>*{font-family: "Comic Sans MS";color: magenta;}</style>
{#await f()}
<p>wait</p>
{:then c}
<p>{c.name} | gender: {c.gender}</p>
{/await}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment