diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..16a9cd2 --- /dev/null +++ b/public/index.html @@ -0,0 +1,18 @@ + + + + + + + + + SQL转换器 + + + +
+ + \ No newline at end of file diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..9f09b50 --- /dev/null +++ b/src/index.js @@ -0,0 +1,14 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import App from './App'; +import { ConfigProvider } from 'antd'; +import zhCN from 'antd/locale/zh_CN'; + +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render( + + + + + +); \ No newline at end of file