mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-23 22:45:06 -04:00
New: Project Aphrodite
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
import React, { Component } from 'react';
|
||||
import { Route } from 'react-router-dom';
|
||||
import Switch from 'Components/Router/Switch';
|
||||
import LogFilesConnector from './Files/LogFilesConnector';
|
||||
import UpdateLogFilesConnector from './Updates/UpdateLogFilesConnector';
|
||||
|
||||
class Logs extends Component {
|
||||
|
||||
//
|
||||
// Render
|
||||
|
||||
render() {
|
||||
return (
|
||||
<Switch>
|
||||
<Route
|
||||
exact={true}
|
||||
path="/system/logs/files"
|
||||
component={LogFilesConnector}
|
||||
/>
|
||||
|
||||
<Route
|
||||
path="/system/logs/files/update"
|
||||
component={UpdateLogFilesConnector}
|
||||
/>
|
||||
</Switch>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Logs;
|
||||
Reference in New Issue
Block a user