Skip to content
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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

solution #1698

wants to merge 2 commits into from

Conversation

Krivets
Copy link

@Krivets Krivets commented Aug 2, 2023

Copy link

@Anastasiia-Svintsova Anastasiia-Svintsova left a 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
Comment on lines 17 to 19
onClick={() => {
getAll().then(setGoodsList);
}}

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

@@ -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}

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants