({ children }: { children: React.ReactNode })
| 16 | export { default as PreviewCodeGroup } from '@/components/code/PreviewCodeGroup' |
| 17 | |
| 18 | export function wrapper({ children }: { children: React.ReactNode }) { |
| 19 | return ( |
| 20 | <article className="flex h-full flex-col pb-10 pt-16"> |
| 21 | <Prose className="flex-auto">{children}</Prose> |
| 22 | <footer className="mx-auto mt-16 w-full max-w-2xl lg:max-w-5xl"></footer> |
| 23 | </article> |
| 24 | ) |
| 25 | } |
| 26 | |
| 27 | export const h2 = function H2( |
| 28 | props: Omit<React.ComponentPropsWithoutRef<typeof Heading>, 'level'>, |
nothing calls this directly
no outgoing calls
no test coverage detected