-
Notifications
You must be signed in to change notification settings - Fork 26
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
Ht4 #55
base: master
Are you sure you want to change the base?
Ht4 #55
Conversation
src/components/product/product.js
Outdated
@@ -57,15 +59,10 @@ Product.propTypes = { | |||
}; | |||
|
|||
const mapStateToProps = (state, props) => ({ | |||
amount: state.order[props.id] || 0, | |||
product: state.products[props.id], | |||
amount: orderSelector(state)[props.id] || 0, |
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.
лучше делать селекторы от всех стейта и пропов, вроде orderSelector(state, props), расскажу при разборе домашки почему
const [activeId, setActiveId] = useState(restaurants[0].id); | ||
|
||
const [activeId, setActiveId] = useState( | ||
'a757a0e9-03c1-4a2a-b384-8ac21dbe2fb2' |
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.
не нужно жестко привязываться к каким-то конкретным данным, чтобы наше приложение могло работать с любым набором ресторанов
No description provided.