import { StrictMode } from "react"; import { createRoot } from "react-dom/client"; import Sortable from "sortablejs"; import App from "./App"; import "./index.scss"; createRoot(document.getElementById("root")!).render( , ); // SortableJS is a hard dependency for the "slickgrid" library window.Sortable = Sortable;