Constants
1 year ago
Router
1 year ago
Theme
1 year ago
components
1 year ago
context
1 year ago
images
1 year ago
reducers
1 year ago
screens
1 year ago
skeleton
1 year ago
utils
1 year ago
App.js
1 year ago
index.js
1 year ago
index.js
14 lines
| 1 | import React from "react"; |
| 2 | import ReactDOM from "react-dom/client"; |
| 3 | import App from "./App"; |
| 4 | (function () { |
| 5 | const container = document.getElementById("everest-forms-dashboard"); |
| 6 | |
| 7 | if (!container) return; |
| 8 | |
| 9 | const root = ReactDOM.createRoot(container); |
| 10 | if (root) { |
| 11 | root.render(<App />); |
| 12 | } |
| 13 | })(); |
| 14 |