Skip to content

Instantly share code, notes, and snippets.

@sanjsanj
Created June 10, 2018 16:34
Show Gist options
  • Save sanjsanj/816a0b41991a8a9e48326843fa122eb8 to your computer and use it in GitHub Desktop.
Save sanjsanj/816a0b41991a8a9e48326843fa122eb8 to your computer and use it in GitHub Desktop.
<amp-state id="state" [src]="remoteState">
<script type="application/json">
{
"name": "General Leia Organa-Solo"
}
</script>
</amp-state>
<h1 [text]="state.name">General Leia Organa-Solo</h1>
<button
on="tap:AMP.setState({
remoteState: 'https://swapi.co/api/people/' + ((random() * 10).toFixed() * 5) + '/?format=json'
})">
Random Star Wars Character
</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment