@@ -8,6 +8,7 @@ const Login = React.lazy(() => import("./views/Pages/Login"));
8
8
const RCloneDashboard = React . lazy ( ( ) => import ( "./views/RCloneDashboard" ) ) ;
9
9
const PluginDashboard = React . lazy ( ( ) => import ( "./views/PluginDashboard" ) ) ;
10
10
const MountDashboard = React . lazy ( ( ) => import ( "./views/MountDashboard" ) ) ;
11
+ const PluginDashboard = React . lazy ( ( ) => import ( "./views/PluginDashboard" ) ) ;
11
12
12
13
// https://github.com/ReactTraining/react-router/tree/master/packages/react-router-config
13
14
// Define the routes as required
@@ -21,6 +22,7 @@ const routes = [
21
22
{ path : '/remoteExplorer/:remoteName/:remotePath' , exact : true , name : 'Explorer' , component : RemoteExplorerLayout } ,
22
23
{ path : '/remoteExplorer' , name : 'Explorer' , component : RemoteExplorerLayout } ,
23
24
{ path : '/rcloneBackend' , name : 'Rclone Backend' , component : RCloneDashboard } ,
25
+ { path : '/pluginDashboard' , name : 'Plugins' , component : PluginDashboard } ,
24
26
{ path : '/mountDashboard' , name : 'Mount Dashboard' , component : MountDashboard } ,
25
27
{ path : '/pluginDashboard' , name : 'Plugins' , component : PluginDashboard } ,
26
28
{ path : '/mountDashboard' , name : 'Mount Dashboard' , component : MountDashboard } ,
0 commit comments