diff --git a/src/App.tsx b/src/App.tsx index 750a6ec..8313301 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,6 +2,7 @@ import React, { useEffect } from 'react'; import { Routes, Route } from 'react-router-dom'; import { BudgetProvider } from './contexts/budget/BudgetContext'; +import { AuthProvider } from './contexts/auth/AuthProvider'; import { Toaster } from './components/ui/toaster'; import Index from './pages/Index'; import Login from './pages/Login'; @@ -23,26 +24,28 @@ function App() { }, []); return ( - -
- - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - - -
-
+ + +
+ + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + + +
+
+
); }