'use client'; import type { RecordingListProps } from '@/types/component-props'; import RecordingCard from './RecordingCard'; export default function RecordingList({ recordings, isLoading = false, onSelectRecording, onDeleteRecording, }: RecordingListProps) { if (isLoading) { return (
No recordings yet
Start recording to see your voice notes here