feat: 模板配置

This commit is contained in:
2025-09-17 17:54:00 +08:00
parent d4bc69d504
commit bc2aff3a4b
18 changed files with 5089 additions and 183 deletions

View File

@@ -1,10 +1,13 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
import {StrictMode} from "react";
import {createRoot} from "react-dom/client";
import "./index.js";
import "./index.css";
import "./aaa.css";
createRoot(document.getElementById('root')!).render(
import App from "@/pages/app/index";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>,
)
);