aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 10e8c91..a7fdd2a 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -5,6 +5,9 @@ import { createRoot } from "react-dom/client";
import App from "./App";
import * as serviceWorker from "./serviceWorker";
+import formsStore from "./store";
+import { Provider } from "react-redux";
+
import * as Sentry from "@sentry/react";
import {
@@ -71,7 +74,9 @@ root.render(
console.log(err);
}}
>
- <App/>
+ <Provider store={formsStore}>
+ <App/>
+ </Provider>
</Sentry.ErrorBoundary>
</React.StrictMode>
);