This commit is contained in:
xiao.xiong
2024-09-12 16:37:38 +08:00
commit d03391446f
21 changed files with 4064 additions and 0 deletions

8
src/main.tsx Normal file
View File

@@ -0,0 +1,8 @@
import { createRoot } from 'react-dom/client';
import { App } from './App.tsx';
// import './tailwind.css';
import './globals.css';
import './index.css';
import './assets/styles.css';
createRoot(document.getElementById('root')!).render(<App />);