Recreate and reconfigured project

This commit is contained in:
2026-03-23 20:44:51 -03:00
parent ea2770829d
commit 3b70b2934f
27 changed files with 4653 additions and 1696 deletions
+10 -12
View File
@@ -1,12 +1,10 @@
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import { StrictMode } from 'react'
const rootElement = document.getElementById('root')
if (!rootElement.innerHTML) {
const root = ReactDOM.createRoot(rootElement)
root.render(
<StrictMode>
<App />
</StrictMode>,
)
}
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "./App";
import "./index.css";
createRoot(document.getElementById("root")).render(
<StrictMode>
<App />
</StrictMode>,
);