????JFIF??x?x????'
Server IP : 104.21.96.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/./eaabusiness.com/wp-content/plugins/everest-forms/src/dashboard/Router/ |
Upload File : |
/** * External Dependencies */ import React from 'react' import { Route, Routes, useLocation } from 'react-router-dom' /** * Internal Dependencies */ import { Dashboard, Help, Products, Settings, Modules, FreeVsPro } from './../screens' const Router = () => { /* global _EVF_DASHBOARD_ */ const { isPro, settingsURL } = typeof _EVF_DASHBOARD_ !== 'undefined' && _EVF_DASHBOARD_ return ( <Routes> <Route path='/' element={<Dashboard />} /> <Route path='/settings' element={<Settings to={settingsURL} />} /> <Route path='/features' element={<Modules />} /> {!isPro && <Route path='/free-vs-pro' element={<FreeVsPro />} />} <Route path='/help' element={<Help />} /> <Route path='*' element={<Dashboard />} /> <Route path='/products' element={<Products />} /> </Routes> ) } export default Router