docs: correct component name on Managing Dynamic Data on angular.dev website (#52792)

PR Close #52792
This commit is contained in:
Sam Edwards 2023-11-10 17:27:52 +00:00 committed by Jessica Janiuk
parent da97bbc762
commit 181e4f31ea

View file

@ -33,7 +33,7 @@ When you want to update state, this is typically accomplished by defining method
```ts
// todo-list-item.component.ts
@Component({ ... })
export class TodoList {
export class TodoListItem {
taskTitle = '';
isComplete = false;