Reputation: 211
I'm going from RC4 to RC6. I'm trying to read angluar.io's website, and some of the instructions are not clear for me.
I have a couple of basic questions, that I'm hoping for more clear answers to:
Thanks much
Upvotes: 1
Views: 888
Reputation: 1
Use the official angular migration from RC4 to RC5 before ;)
https://angular.io/docs/ts/latest/cookbook/rc4-to-rc5.html
Upvotes: 0
Reputation: 2793
You don't necessarily have to turn each component into it's own module. If two components are closely related I would turn them into a module.
imports
are used to include other modules in the current module.
declarations
are used to declare all the components of the module.
Upvotes: 2