Skip to content

Commit

Permalink
Wrapped <App /> in index.jsx with <React.StrictMode>
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisnajman committed May 23, 2024
1 parent f6d3cd7 commit 043302c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,9 @@ import ReactDOM from "react-dom"

import App from "./App"

ReactDOM.render(<App />, document.getElementById("root"))
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById("root")
)

0 comments on commit 043302c

Please sign in to comment.