import { PlusIcon } from '@/icons' import { useState } from 'preact/hooks' import { ContactPointFormModal } from './ContactPointsTable/components/ContactPointFormModal' export const NoContactPoints = () => { const [showNew, setShowNew] = useState(false) return ( <>
No contact points defined.
{showNew && ( setShowNew(false)} /> )} ) }