codigo0/admin-panel/src/pages/AuditPage.tsx

24 lines
522 B
TypeScript
Raw Normal View History

2026-01-19 08:10:16 +00:00
/**
* Página de Auditoría
*/
export default function AuditPage() {
return (
<div className="p-6 space-y-6">
<div>
<h1 className="text-3xl font-bold text-foreground">Auditoría</h1>
<p className="text-muted-foreground mt-1">
Logs de cambios y versiones
</p>
</div>
<div className="bg-card border border-border rounded-xl p-6">
<p className="text-muted-foreground">
Funcionalidad en desarrollo...
</p>
</div>
</div>
);
}