Files
catherine-league/nextjs/src/app/contact/page.tsx

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} />;
}