Last active
January 13, 2017 02:45
-
-
Save uglow/c943418756cae1f685abb4556df5a5b1 to your computer and use it in GitHub Desktop.
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
import angular from 'angular'; | |
import ToDoComponent from './todo.component'; | |
import FormComponent from './form.component'; | |
export default angular | |
.module('main.app.feature-b', []) | |
.component('todo', ToDoComponent) | |
.component('todo', FormComponent) | |
.name; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment