Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- brockross
- chaance
- chasinhues
- christopherchudzicki
- elylucas
- hongji00
- JakubDrozd
Expand Down
2 changes: 1 addition & 1 deletion tutorial/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>React Router - Tutorial</title>
</head>
<body>
<div id="app"><!--app-html--></div>
<div id="root"><!--app-html--></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion tutorial/src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import * as ReactDOM from "react-dom";
import App from "./App";
import "./main.css";

let rootElement = document.getElementById("app");
let rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);