не обязательно. Есть цитата “As your app grows, you can organize code relevant for a specific feature. This helps apply clear boundaries for features. With feature modules, you can keep code related to a specific functionality or feature separate from other code. Delineating areas of your app helps with collaboration between developers and teams, separating directives, and managing the size of the root module.”
Ну то, что фича-модули надо выделять, это понятно.
У меня например есть страница создания заказа (форма). Заказ может быть нескольких типов, и каждый тип заказа - это компонент. Так вот, надо ли каждый тип заказа в модуль выделять, или достаточно одного модуля заказа?