add load simulation
This commit is contained in:
parent
b9b0a63ae3
commit
d46d7e28b7
|
@ -1,7 +1,9 @@
|
||||||
import { createRoot } from "react-dom/client";
|
import { createRoot } from "react-dom/client";
|
||||||
import { Base } from './Base';
|
import { Base } from './Base';
|
||||||
|
|
||||||
document.getElementById('resume_js_app').innerHTML = '';
|
setTimeout(() => {
|
||||||
const container = document.getElementById("resume_js_app");
|
document.getElementById('resume_js_app').innerHTML = '';
|
||||||
const root = createRoot(container)
|
const container = document.getElementById("resume_js_app");
|
||||||
root.render(<Base />);
|
const root = createRoot(container)
|
||||||
|
root.render(<Base />);
|
||||||
|
}, (Math.random() * 200) + 500)
|
Loading…
Reference in New Issue