UNPKG

strapi-plugin-audit-logs

Version:

Comprehensive audit logging plugin for Strapi v5 that tracks all user interactions and system events with a clean admin interface and automatic cleanup

14 lines (11 loc) 252 B
import React from "react"; import { Routes, Route } from "react-router-dom"; import HomePage from "../HomePage/index"; const App = () => { return ( <Routes> <Route index element={<HomePage />} /> </Routes> ); }; export default App;