Search code examples
reactjsreact-hooksreact-routermern

React page is not responding


Ive 2 pages connected to app.js one is home.js and second is compiler.js both are rendered using react router home is perfectly rendering and when i move to compiler.js the page loads and no content is showing up

this is the code enter image description here

can anyone explain whats going on


Solution

  • Is it the space in the path

    <Route path="/Compiler/: roomId" element={}>

    Try <Route path="/Compiler/:roomId" element={}>