Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesWt committed May 28, 2024
1 parent 05ad347 commit 715c312
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/dev/guidelines/client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Some general aspects:
2. Components
=============

In our project, we promote the creation of standalone components instead of using Angular Modules. A standalone component is a self-contained unit that encapsulates its own logic, view, and styles. It doesn't directly depend on its parent or child components and can be reused in different parts of the application.
In our project, we promote the creation of standalone components instead of using Angular modules. A standalone component is a self-contained unit that encapsulates its own logic, view, and styles. It doesn't directly depend on its parent or child components and can be reused in different parts of the application.
For existing components that are not standalone, we should aim to migrate them step by step. This migration process should be done gradually and carefully, to avoid introducing bugs. It's recommended to thoroughly test the component after each change to ensure it still works as expected.
Standalone components can be generated with the Angular CLI using ``ng g c <component-name> --standalone``.

Expand Down

0 comments on commit 715c312

Please sign in to comment.