({
title,
description,
}: {
title?: string
description?: string
} = {})
| 11 | export * from './snippet.js' |
| 12 | |
| 13 | export const getMetadata = ({ |
| 14 | title, |
| 15 | description, |
| 16 | }: { |
| 17 | title?: string |
| 18 | description?: string |
| 19 | } = {}) => ({ |
| 20 | title: title ? `${title} - Vercel Examples` : 'Vercel Example', |
| 21 | description, |
| 22 | }) |
no outgoing calls
no test coverage detected