'use client' /** * Audit Export Wizard * * Features: * - Export type selection * - Scope filtering (regulations, domains) * - Export generation * - Download * - Export history */ import Link from 'next/link' import AdminLayout from '@/components/admin/AdminLayout' import { useExport } from './_components/useExport' import ExportWizard from './_components/ExportWizard' import ExportHistory from './_components/ExportHistory' export default function ExportPage() { const exp = useExport() return ( {/* Header */}
Zurueck
{exp.loading ? (
) : (
)} ) }