scrimba
Intro to React Router
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Intro to React Router
AboutCommentsNotes
Intro to React Router
Expand for more info
index.js
run
preview
console
import React from "react";
import ReactDOM from "react-dom/client";
import App from './App';

const root = ReactDOM.createRoot(document.getElementById("root"));

root.render(
<App />
)
Console
/
-5:51