With Angular 14 the new concept of standalone components has found its way into the Angular eco-system. With the help of this new approach the creation of Angular components is now easier than ever before.
Standalone components do not need to be included in any of Angular’s NgModule files. Hence, they prevent modules from bloating out especially when building bigger applications.
Creating such components is fairly simple: In the @Component decorator the boolean property standalone has to be enabled. That’s it in general.
Furthermore, standalone components can also be imported in other standalone components.