I have a string passed through from the previous page which contains a companies name, let's say it's 'Apple'.
On this page I then want to access an object called 'Apple' to get details about it.
I have tried with template literals but doesn't seem to work.
`${companyName}`.map((item)
I'm using reactjs.