UPDATE: This problem has been solved by simply using a different browser. I was originally using Microsoft Edge as that is what NPM Start automatically opened. For some reason it appears to work perfectly when manually pasting localhost:3000/ into Chrome.
I am brand new to React and I am trying to set up a basic test project. I have been following some tutorials, this one in particular https://www.youtube.com/watch?v=sBws8MSXN7A My issue is that for some reason when I try to test the basic boilerplate I don't see anything from the basic component. From what I understand there should just be a basic logo, but my page is completely blank. I don't know what code is relevant to post since I am very new so if you think something might help then let me know what you would like.
Here is what I have done:
In Windows Powershell I ran npx create-react-app todolist
This created a new react app in a folder called todolist.
I moved into the todolist folder in Powershell using the cd command.
From here I ran npm start
This opened a new microsoft edge window at localhost:3000/ It has the title of React App on the tab, but there is no content on the page.
From what I understand there should be a logo here.
I opened the console and it says this:
HTML1300: Navigation occurred. localhost:3000 (1,1)
[HMR] Waiting for update signal from WDS...
SCRIPT5022: SCRIPT5022: SyntaxError 0.chunk.js (3857,1)
I don't know if that is relevant but I might as well add it.
Any help on this would be greatly appreciated. I have been Googling about this for over an hour and cannot figure out what is going on.