Last active
June 27, 2016 23:20
-
-
Save alecklandgraf/aff341adcb03b4d944c66d3de1d9ac70 to your computer and use it in GitHub Desktop.
angular component hellp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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