feat: widget sdk

This commit is contained in:
Tristan Yang
2022-10-27 21:21:54 +08:00
parent 23320ab637
commit 1987c257ba
25 changed files with 456 additions and 96 deletions
+14
View File
@@ -0,0 +1,14 @@
import ReactDOM from "react-dom/client";
import { Provider } from "react-redux";
import Widget from "./widget/index";
import './assets/index.css';
import store from "./app/store";
const root = ReactDOM.createRoot(document.getElementById("root") as HTMLElement);
root.render(
<Provider store={store}>
<Widget />
</Provider>
);