h5微信授权
CI / verify (pull_request) Has been cancelled

This commit is contained in:
2026-07-14 20:09:36 +08:00
parent 9b13d02dde
commit 1ad49f1acf
14 changed files with 569 additions and 79 deletions
+7 -1
View File
@@ -1,9 +1,15 @@
import './lib/text-encoding-polyfill';
import { PropsWithChildren } from 'react';
import WechatShareBootstrap from './components/WechatShareBootstrap';
import './app.css';
function App({ children }: PropsWithChildren) {
return children;
return (
<>
<WechatShareBootstrap />
{children}
</>
);
}
export default App;