BREAKING CHANGE: start over for react + three project

This commit is contained in:
2025-05-21 17:39:12 +02:00
parent 1ee616ce7e
commit 94305aacbf
81 changed files with 1443 additions and 5728 deletions

View File

@@ -1,10 +1,9 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App.tsx";
import "./index.scss";
import { createRoot } from "react-dom/client";
import { StrictMode } from "react";
import App from "./App";
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
createRoot(document.getElementById("root") as HTMLElement).render(
<StrictMode>
<App />
</React.StrictMode>,
</StrictMode>,
);