import { useNavigate } from 'react-router-dom'; import { Card } from '../components'; import { ActivityForm } from '../components/form'; import { useLeads } from '../api/leads'; import { ACTIVITY_META } from '../api/forms'; /** Capture Lead — the INIT activity. Creates a new instance via /start. */ export function NewLeadScreen() { const navigate = useNavigate(); const { refetch } = useLeads(); return (