My React app was working perfectly fine. I did a yarn start and relaunched to continue working on the layout and got the above response. I researched the problem but can't seem to get clear directions whether this is a debugging issue with my chrome or react app. I did go into chrome extensions and enabled "Allow access to URLs" under React development tools. Did anyone face a similar problem or advice on what steps to take?
Thank you!
My app crashed because I created a component that didn't exist in html. After coding the
<header>
html component module successfully, I accidentally created an html element component called<hero>
which doesn't exist in html. This crashed my React app with no clear error. Check your newly added html tags.