I think this belongs to project feedback or FCC support. But anyway, I have built my React 25+5 Clock at its core at least (I’m planning to add some more CSS and styling but the timer itself is ready and all) and when I link a script with an src set to what the project page says (i.e “https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js”) the bars with the test suite don’t appear, i tried placing it before the head, in the head, after it, in the body, after the body but it doesn’t seem to work anywhere, from what i ran the clock seems to work absolutely ok but tests will tell better, any help?
Alright, I decided to play with your project now that you added an attempt since it looked perfectly valid.
This appears to be some funny behavior from CodePen is all.
Typically with CodePen, there is no need to type out the skeleton of the document, skip html, head, and body, only write what would be inside of body. CodePen does the rest for you.
So I think the issue is, that you are rendering your react component directly to the body, as opposed to for example a div within the body.
If you just add the script inside the body, and you also add a div with the id “lmfao” as well as remove that id from the body, everything should work