deepsite / src /main.tsx
enzostvs's picture
enzostvs HF Staff
padding toaste
413679b
raw
history blame contribute delete
353 Bytes
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import { ToastContainer } from "react-toastify";
import "./assets/index.css";
import App from "./components/App.tsx";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
<ToastContainer className="pt-11 max-md:p-4" />
</StrictMode>
);