This repository represents product page by React
- Navigation
- Search
- Display product and its details
- via name
- via price
- via description
- via brand
- via model
- via condition
- via color
- via size
- via dimensions
- Seller follow/unfollow and contact
- See Seller reviews
- Comment on product
- View popular products
[email protected]:alized559/product-description.git
cd product-description
npm i bootstrap
npm i styled-components
npm i font-awesome
I used bootstrap4.5.2 framework for some components like buttons, and styled-components package. Which let you to use css inside js file for example:
const Button = styled.button`
color: grey;
`;
Now you can use it as a component:
<Button>example</Button>
npm start