You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
820 B

2 years ago
  1. import { Divider } from 'react-vant'
  2. import '~/styles/product.scss'
  3. import ProductItem from '../../components/ProductItem'
  4. const Product = () => {
  5. return (
  6. <div className="product plr-3">
  7. <div className="input-box mt-2">
  8. <i className='iconfont icon-search'></i>
  9. <input type="text" placeholder='Search Here' />
  10. </div>
  11. <div className='mt-2 fz-16 fz-wb-550'>0</div>
  12. <div className='box'></div>
  13. <Divider style={{ borderColor: '#dedede', borderWidth: 1 }} />
  14. <div className='mt-1'></div>
  15. <div className='row-between flex-wrap'>
  16. {
  17. Array.from({ length: 6 }).map((_, index) => (
  18. <ProductItem key={index} />
  19. ))
  20. }
  21. </div>
  22. </div>
  23. )
  24. }
  25. export default Product