init commit,
This commit is contained in:
17
99_references/cf-identity-wallet-main/src/index.tsx
Normal file
17
99_references/cf-identity-wallet-main/src/index.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import ReactDOM from "react-dom/client";
|
||||
import { Provider } from "react-redux";
|
||||
import { App } from "./ui/App";
|
||||
import reportWebVitals from "./reportWebVitals";
|
||||
import "./i18n";
|
||||
import { store } from "./store";
|
||||
|
||||
const root = ReactDOM.createRoot(
|
||||
document.getElementById("root") as HTMLElement
|
||||
);
|
||||
root.render(
|
||||
<Provider store={store}>
|
||||
<App />
|
||||
</Provider>
|
||||
);
|
||||
|
||||
reportWebVitals();
|
Reference in New Issue
Block a user