whoami7 - Manager
:
/
home
/
rattkxnv
/
byattorney.com
/
wp-content
/
plugins
/
everest-forms
/
src
/
dashboard
/
Router
/
Upload File:
files >> /home/rattkxnv/byattorney.com/wp-content/plugins/everest-forms/src/dashboard/Router/Router.js
/** * 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
Copyright ©2021 || Defacer Indonesia