commerce/app/search/[collection]/opengraph-image.tsx
2024-12-26 21:35:53 +01:00

9 lines
225 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: '' });
}