From ca953d244aa69496cb45062a07492d7a7017f2b1 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 18 Apr 2023 19:28:32 +0200 Subject: [PATCH] Implemented the AccountProvider into the App.jsx --- src/App.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/App.jsx b/src/App.jsx index 23d365e..1c42f26 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,11 +1,14 @@ import "@styles/fonts.sass"; import "@styles/root.sass"; import Login from "@/pages/Login"; +import {AccountProvider} from "@/common/contexts/Account/AccountContext.jsx"; export default () => { return (
- + + +
) } \ No newline at end of file