commit | af17315b32a1ff094041338216f7dcfc3c107425 | [log] [tgz] |
---|---|---|
author | 22301008 <22301008@bjtu.edu.cn> | Sun Jun 15 10:46:25 2025 +0800 |
committer | 22301008 <22301008@bjtu.edu.cn> | Sun Jun 15 10:46:25 2025 +0800 |
tree | 762fd98ae3c908043a30a350148fc91704aa88ad | |
parent | cae762d729ecc9fc3f30c26cfde42bd4b06bb5c4 [diff] [blame] |
修改前端推荐搜素样式,链接推荐搜索前后端 Change-Id: I76d3be2a2cb6f553fc6c4512e11b6de3341ad0c4
diff --git a/JWLLL/API_front/src/main.jsx b/JWLLL/API_front/src/main.jsx new file mode 100644 index 0000000..b9a1a6d --- /dev/null +++ b/JWLLL/API_front/src/main.jsx
@@ -0,0 +1,10 @@ +import { StrictMode } from 'react' +import { createRoot } from 'react-dom/client' +import './index.css' +import App from './App.jsx' + +createRoot(document.getElementById('root')).render( + <StrictMode> + <App /> + </StrictMode>, +)