mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
import { renderDevTools } from "@refinedev/devtools-ui";
|
|
import "@refinedev/devtools-ui/style.css";
|
|
|
|
const container = document.getElementById("root");
|
|
|
|
if (container) {
|
|
renderDevTools(container);
|
|
} else {
|
|
throw new Error("Could not find root element");
|
|
}
|