import { StrictMode } from "react";
import { createRoot } from "react-dom/client";

// Bootstrap's JS (collapse, dropdowns, modals, ...) via data attributes.
import "bootstrap";

import App from "@/components/App";

const container = document.getElementById("root");

if (container) {
    createRoot(container).render(
        <StrictMode>
            <App />
        </StrictMode>,
    );
}
