Prism ICT

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

Default image

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

Default image

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>) }

Default image

Git essential command (cheat sheet)

Create and check out the new branch. git checkout -b <branch-name>

1 7 8 9 10 11 19