What is a standalone component in modern Angular?
- A A component that cannot be reused
- B A component that declares its own dependencies without needing an NgModule
- C A component rendered outside the application
- D A component without a template
Answer
A component that declares its own dependencies without needing an NgModule
Standalone components import what they need directly, reducing boilerplate and making the dependency graph explicit.





