Skip to content

Commit 4726203

Browse files
1heykaldylhunn
authored andcommitted
docs: added missing 'next steps' sections (angular#52229)
PR Close angular#52229
1 parent 61fb6b8 commit 4726203

File tree

6 files changed

+24
-0
lines changed

6 files changed

+24
-0
lines changed

aio/content/tutorial/tour-of-heroes/toh-pt0.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,8 @@ Here are the code files discussed on this page.
152152
* You learned that Angular components display data
153153
* You used the double curly braces of interpolation to display the application title
154154

155+
## Next steps
156+
157+
* [1. The hero editor](tutorial/tour-of-heroes/toh-pt1)
158+
155159
@reviewed 2023-08-30

aio/content/tutorial/tour-of-heroes/toh-pt1.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,4 +221,8 @@ Here are the code files discussed on this page.
221221
* You imported the `FormsModule` in the `AppModule` so that Angular would recognize and apply the `ngModel` directive.
222222
* You learned the importance of declaring components in the `AppModule`.
223223

224+
## Next steps
225+
226+
* [2. Display a list](tutorial/tour-of-heroes/toh-pt2)
227+
224228
@reviewed 2022-02-28

aio/content/tutorial/tour-of-heroes/toh-pt2.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,4 +206,8 @@ Here are the code files discussed on this page, including the `HeroesComponent`
206206
* You used `*ngIf` to conditionally include or exclude a block of HTML.
207207
* You can toggle a CSS style class with a `class` binding.
208208

209+
## Next steps
210+
211+
* [3. Create a feature component](tutorial/tour-of-heroes/toh-pt3)
212+
209213
@reviewed 2023-08-30

aio/content/tutorial/tour-of-heroes/toh-pt3.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,4 +155,8 @@ Here are the code files discussed on this page.
155155
to make the `hero` property available for binding
156156
by the external `HeroesComponent`.
157157

158+
## Next steps
159+
160+
* [4. Add services](tutorial/tour-of-heroes/toh-pt4)
161+
158162
@reviewed 2023-08-30

aio/content/tutorial/tour-of-heroes/toh-pt4.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,4 +366,8 @@ Here are the code files discussed on this page.
366366
* You created a `MessageService` for loosely coupled communication between classes.
367367
* The `HeroService` injected into a component is created with another injected service, `MessageService`.
368368

369+
## Next steps
370+
371+
* [5. Add navigation](tutorial/tour-of-heroes/toh-pt5)
372+
369373
@reviewed 2022-02-28

aio/content/tutorial/tour-of-heroes/toh-pt5.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -490,4 +490,8 @@ Here are the code files discussed on this page.
490490
* You used router link parameters to navigate to the detail view of a user-selected hero
491491
* You shared the `HeroService` with other components
492492

493+
## Next steps
494+
495+
* [6. Get data from a server](tutorial/tour-of-heroes/toh-pt6)
496+
493497
@reviewed 2022-02-28

0 commit comments

Comments
 (0)