Blog
At Prism ICT, we offer a comprehensive range of services designed to help you achieve digital excellence At Prism ICT, we offer a comprehensive range of services
Export ‘WithRouter’ is not exported from ‘react-router-dom’
This is a very common error on react-router-dom v6, Because of withRouter not working anymore on this version. With useNavigate it's very easy to solve it. But has one other
React JSX repeat or loop a component
Simple use the below code to repeat a component for X times { [...Array(8)].map((e, i) => <span className="className" key={i}>Contennt here</span>) }
Git essential command (cheat sheet)
Create and check out the new branch. git checkout -b <branch-name>