feat: 模板配置
This commit is contained in:
15
src/main.tsx
15
src/main.tsx
@@ -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>,
|
||||
)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user