commerce/app/search/[collection]/opengraph-image.tsx
2024-12-27 03:24:35 +01:00

8 lines
224 B
TypeScript

import OpengraphImage from 'components/opengraph-image';
export const runtime = 'edge';
export default async function Image({ params }: { params: { collection: string } }) {
return await OpengraphImage({ title: '' });
}