Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
atellmer authored Aug 4, 2022
1 parent 93a9ed1 commit c22acf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ or without Fragment

```tsx
const List = createComponent(({ items }) => {
return albums.map(x => <div key={x.id}>{x.title}</div>);
return items.map(x => <div key={x.id}>{x.title}</div>);
});
```
<a name="components"></a>
Expand Down

0 comments on commit c22acf6

Please sign in to comment.