-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
43e130b
commit 4d8382b
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
import { ColorModeScript } from "@chakra-ui/react" | ||
import * as React from "react" | ||
import * as ReactDOM from "react-dom/client" | ||
import { createRoot } from "react-dom/client"; | ||
import { App } from "./App" | ||
|
||
|
||
const container = document.getElementById("root") | ||
if (!container) throw new Error('Failed to find the root element'); | ||
const root = ReactDOM.createRoot(container) | ||
const root = createRoot(container); | ||
|
||
root.render( | ||
<> {/* remove strict mode for production */} | ||
<ColorModeScript /> | ||
<App /> | ||
</>, | ||
) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters