fix: remove main.ts in src

This commit is contained in:
p-sw 2024-06-29 22:36:20 +09:00
parent 4d33e78454
commit 780eed20d5

View File

@ -1,14 +0,0 @@
import "./tailwind.css";
import App from "@/DialogOverflowTest.tsx";
import React from "react";
import ReactDOM from "react-dom/client";
const ROOT = document.getElementById("root");
if (!ROOT) throw new Error("ROOT is not found");
ReactDOM.createRoot(ROOT).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);