-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
solution #1698
base: master
Are you sure you want to change the base?
solution #1698
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Almost done!
src/App.tsx
Outdated
onClick={() => { | ||
getAll().then(setGoodsList); | ||
}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You repeat the same logic (.then(setGoodsList)` for each button. Create a separate method for it
src/GoodsList.tsx
Outdated
@@ -8,7 +8,11 @@ type Props = { | |||
export const GoodsList: React.FC<Props> = ({ goods }) => ( | |||
<ul> | |||
{goods.map(good => ( | |||
<li key={good.id} data-cy="good"> | |||
<li | |||
key={good.id} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use destructuring for the good object for better readability
DEMO LINK