-
-
Save robwormald/96411da83771462f9adf to your computer and use it in GitHub Desktop.
Product List Component
This file contains 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
class AppComponentController {} | |
export const AppComponent { | |
bindings: { | |
products: '=', | |
sort: '&' | |
}, | |
controller: AppComponentController | |
} | |
angular.module('app', []) | |
.component('appComponent', AppComponent); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment