react-live-clock
Advanced tools
Comparing version 6.1.19 to 6.1.20
# Changelog | ||
## [6.1.20] | ||
Bump eslint-plugin-react from 7.33.2 to 7.34.0 | ||
Bump es5-ext from 0.10.62 to 0.10.64 (#313) | ||
Bump react-router-dom from 6.21.1 to 6.22.2 (#314) | ||
Bump eslint from 8.56.0 to 8.57.0 (#312) | ||
Bump moment-timezone from 0.5.43 to 0.5.45 (#310) | ||
Bump follow-redirects from 1.15.3 to 1.15.4 (#306) | ||
Bump moment from 2.29.4 to 2.30.1 (#304) | ||
## [6.1.19] | ||
@@ -4,0 +13,0 @@ Bump eslint from 8.53.0 to 8.56.0 (#301) |
{ | ||
"name": "react-live-clock", | ||
"version": "6.1.19", | ||
"version": "6.1.20", | ||
"description": "React Live Clock", | ||
@@ -47,4 +47,4 @@ "main": "lib/index.js", | ||
"cf-react-component-template": "0.1.8", | ||
"eslint": "8.56.0", | ||
"eslint-plugin-react": "7.33.2", | ||
"eslint": "8.57.0", | ||
"eslint-plugin-react": "7.34.0", | ||
"prop-types": "15.8.1", | ||
@@ -55,3 +55,3 @@ "react": "^16.8 || ^17 || ^18", | ||
"react-moment": "1.1.3", | ||
"react-router-dom": "6.21.1", | ||
"react-router-dom": "6.22.2", | ||
"react-syntax-highlighter": "15.5.0", | ||
@@ -58,0 +58,0 @@ "remark": "15.0.1" |
import React from 'react'; | ||
import ReactDOM from 'react-dom'; | ||
import {createRoot} from 'react-dom/client'; | ||
import App from './App'; | ||
const appRoot = document.createElement('div'); | ||
const container = document.createElement('div'); | ||
appRoot.id = 'app'; | ||
document.body.appendChild(appRoot); | ||
ReactDOM.render(<App />, appRoot); | ||
document.body.appendChild(container); | ||
const appRoot = createRoot(container); | ||
appRoot.render(<App />); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9928130
85954