forked from TechBowl-japan/react-stations
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request TechBowl-japan#102 from TechBowl-japan/chores/upda…
…te-dependencies-20220401 依存関係の更新; React 18にアップグレード
- Loading branch information
Showing
4 changed files
with
1,033 additions
and
809 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
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,6 +1,7 @@ | ||
import * as React from 'react' | ||
import * as ReactDOM from 'react-dom' | ||
import * as ReactDOM from 'react-dom/client' | ||
import { App } from './App' | ||
|
||
const root = document.getElementById('root') | ||
ReactDOM.render(<App />, root) | ||
const reactRoot = ReactDOM.createRoot(root) | ||
reactRoot.render(<App />) |
Oops, something went wrong.