Created
February 22, 2019 15:55
-
-
Save maxkoretskyi/b3ce311f01daa7d6543361c5a8725bf8 to your computer and use it in GitHub Desktop.
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
| export class ComponentResolver { | |
| private resolveByName(propertyName, ...) { | |
| const componentName = componentNameOpt != null ? componentNameOpt : propertyName; | |
| const registeredComponent = this.componentProvider.retrieve(componentName); | |
| ... | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment