10 lines
325 B
TypeScript
10 lines
325 B
TypeScript
import { getCustomers } from "@/lib/customers/actions"
|
|
import SmsPageClient from "@/components/dashboard/sms-page-client"
|
|
|
|
export default async function SmsPage() {
|
|
// Fetch all customers to show in the list
|
|
const { data: customers } = await getCustomers()
|
|
|
|
return <SmsPageClient customers={customers || []} />
|
|
}
|