From dcf344bbe66a6806285404ab7cd11c2426ee649b Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Tue, 9 Sep 2025 13:00:15 -0500 Subject: [PATCH] Creating VPNContext.jsx to share state through all vpn components. --- src/app/routes.js | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/src/app/routes.js b/src/app/routes.js index 3c24f42..0b8e0ac 100755 --- a/src/app/routes.js +++ b/src/app/routes.js @@ -1,24 +1,15 @@ import { Route, Routes } from 'react-router-dom'; import { Login, NotFound, Dashboard, Git, VPN, Docker } from './views'; -import { VPNProvider } from './components/VPN/VPNContext'; - - export default function AppRoutes() { return ( - - }/> - }/> - }/> - }/> - }/> - }/> - + + } /> + } /> + } /> + } /> + } /> + } /> + ); }; -- 2.43.0