We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53c82ca commit aad8361Copy full SHA for aad8361
src/index.tsx
@@ -1,11 +1,23 @@
1
+//#region > Imports
2
+//> React
3
+// Contains all the functionality necessary to define React components
4
import React from "react";
5
+// This serves as an entry point to the DOM and server renderers for React
6
import ReactDOM from "react-dom";
7
// DOM bindings for React Router
8
import { BrowserRouter as Router } from "react-router-dom";
-import "./index.css";
9
+
10
+//> Style sheet
11
+// Root SCSS file
12
+import "./index.scss";
13
+//> Components
14
+// Root component
15
import App from "./App";
16
+//> Service Worker
17
import * as serviceWorker from "./serviceWorker";
18
+//#endregion
19
20
+//Render the root component to <div id="root"></div>
21
ReactDOM.render(
22
<React.StrictMode>
23
<Router>
0 commit comments