diff --git a/aio/content/start/index.md b/aio/content/start/index.md index 6d0bf44ab7..a0f0069999 100644 --- a/aio/content/start/index.md +++ b/aio/content/start/index.md @@ -255,11 +255,11 @@ The next step is to create a new alert feature that takes a product as an input. 1. Import `Input` from `@angular/core`. - + 1. In the `ProductAlertsComponent` class definition, define a property named `product` with an `@Input()` decorator. The `@Input()` decorator indicates that the property value passes in from the component's parent, the product list component. - + 1. Define the view for the new product alert component.