10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
import { ContactList } from '@/components/ContactList';
|
|
import { getContactItems } from '@/lib/data';
|
|
|
|
export const dynamic = 'force-dynamic';
|
|
|
|
export default async function ContactPage() {
|
|
const items = await getContactItems();
|
|
return <ContactList items={items} />;
|
|
}
|