// filepath: /Users/sunmeng/code/github/mcphub/frontend/src/pages/LogsPage.tsx import React from 'react'; import { useTranslation } from 'react-i18next'; import LogViewer from '../components/LogViewer'; import { useLogs } from '../services/logService'; const LogsPage: React.FC = () => { const { t } = useTranslation(); const { logs, loading, error, clearLogs } = useLogs(); return (

{t('pages.logs.title')}

); }; export default LogsPage;