Is your feature request related to a problem? Please describe.
Currently every other page used functional component and to access state it uses react-redux hook, extract ProductDetailPage into functional component.
Describe the solution you'd like
Convert class component into functional component
Extract state full component into container
Create component for sort and filter options
use react-redux hook to access state
Additional context
Make ProductDetailPage modular, so that it can support wide variety of products like, simple, configurable, downloadable etc.
Is your feature request related to a problem? Please describe. Currently every other page used functional component and to access state it uses
react-redux
hook, extractProductDetailPage
into functional component.Describe the solution you'd like
react-redux
hook to access stateAdditional context Make
ProductDetailPage
modular, so that it can support wide variety of products like, simple, configurable, downloadable etc.