import { Direction } from "../../../db"; import usePhoneCalls from "../hooks/use-phone-calls"; export default function PhoneCallsList() { const phoneCalls = usePhoneCalls(); if (phoneCalls.length === 0) { return
empty state
; } return ( ); }