From: charleswrayjr Date: Tue, 9 Sep 2025 18:01:39 +0000 (-0500) Subject: Creating VPNContext.jsx to share state through all vpn components. X-Git-Url: https://git.phasecustomsoft.com/?a=commitdiff_plain;h=6047081612bd6e2efb489a800190449b61a52143;p=phs-admin.git Creating VPNContext.jsx to share state through all vpn components. --- diff --git a/src/app/routes.js b/src/app/routes.js index 0b8e0ac..c18771c 100755 --- a/src/app/routes.js +++ b/src/app/routes.js @@ -1,5 +1,6 @@ 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 ( @@ -7,7 +8,7 @@ export default function AppRoutes() { } /> } /> } /> - } /> + } /> } /> } />