import { AuditHistorySection } from "@/client/features/audit/launch/AuditHistorySection"; import { LaunchFormCard } from "@/client/features/audit/launch/LaunchFormCard"; import { useLaunchController } from "@/client/features/audit/launch/useLaunchController"; export function LaunchView({ projectId, onAuditStarted, }: { projectId: string; onAuditStarted: (auditId: string) => void; }) { const controller = useLaunchController({ projectId, onAuditStarted }); return (

Site Audit

); }