mirror of
https://github.com/vercel/commerce.git
synced 2025-06-28 01:11:24 +00:00
10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
import OpengraphImage from 'components/opengraph-image';
|
|
|
|
export const runtime = 'edge';
|
|
|
|
export default async function Image({ params }: { params: { page: string } }) {
|
|
const title = '';
|
|
|
|
return await OpengraphImage({ title });
|
|
}
|