2026-07-04 00:26:36 +08:00

13 lines
425 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from "react";
import { createRoot } from "react-dom/client";
import { DatabiApp } from "./DatabiApp.jsx";
// 全局设计 token@/styles/tokens.css供共享组件如 TimeRangeFilter取色先于本地样式引入。
import "@/styles/tokens.css";
import "./styles/index.css";
createRoot(document.getElementById("databi-root")).render(
<React.StrictMode>
<DatabiApp />
</React.StrictMode>
);