fix: update import path for App component in main.tsx

feat: add error handling middleware in server.js
This commit is contained in:
2025-07-21 20:56:11 +02:00
parent 7ab62b8d13
commit b9699bd512
2 changed files with 8 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "../other/App.tsx";
import App from "../src/App.tsx";
createRoot(document.getElementById("root")!).render(
<StrictMode>