FlipKart Clone


logo

🎯 Learnings from the Projects:

📌 About Material UI


  • You can directly style the components of material UI with this syntax:
const CustomBox = styled(Box)`
margin-left:12%;
line-height:0;
`
  • we can use this Syntax for Custom css of HTMl tag in React and material UI
const PlusImg = styled('img')({
    width: 12,
    height: 12,
    marginLeft: 4
})

Libraries Used in the Project


react-multi-carousel

Error Occured in the Project

DataBase Errors

  • user is not allowed to do action [insert] on [test.products] This is an Classical Error while setting the connection with the DataBase.

Solution__ Resource Link : https://tinyl.io/8E3U Go to DataBase and check the User Roles Replace it with ReadAndWrite option.