Skip to content

Instantly share code, notes, and snippets.

@alecklandgraf
Last active June 27, 2016 23:20
Show Gist options
  • Select an option

  • Save alecklandgraf/aff341adcb03b4d944c66d3de1d9ac70 to your computer and use it in GitHub Desktop.

Select an option

Save alecklandgraf/aff341adcb03b4d944c66d3de1d9ac70 to your computer and use it in GitHub Desktop.
angular component hellp
module.component('helloNav', {
bindings: {
me: '<'
},
template: `<div class="section-nav">
<h2>Hello {{ $ctrl.me.first_name }} {{ $ctrl.me.last_name }}</h2>
</div>`
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment