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