Skip to content

Commit

Permalink
Add display names
Browse files Browse the repository at this point in the history
  • Loading branch information
wcjordan committed Oct 6, 2024
1 parent cf7b39d commit 9f4d0c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions ui/js/src/components/TodoItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ const TodoItem: React.FC<Props> = memo(function (props: Props) {
</Card>
);
});
TodoItem.displayName = 'TodoItem';

type Props = {
editing: boolean;
Expand Down
1 change: 1 addition & 0 deletions ui/js/src/components/TodoList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,5 +170,6 @@ const TodoList: React.FC = memo(function () {
</React.Fragment>
);
});
TodoList.displayName = 'TodoList';

export default TodoList;

0 comments on commit 9f4d0c6

Please sign in to comment.