(props: unknown)
| 46 | } |
| 47 | |
| 48 | export async function FineGrained(props: unknown) { |
| 49 | const { content, page } = parseProps( |
| 50 | props, |
| 51 | Block.extend({ |
| 52 | content: CodeBlock, |
| 53 | page: z.any(), |
| 54 | }), |
| 55 | ) |
| 56 | |
| 57 | const highlightedContent = await highlight(content, theme) |
| 58 | |
| 59 | return ( |
| 60 | <section className="md:flex gap-2 items-stretch w-full [&>*]:flex-1"> |
| 61 | <Code codeblock={highlightedContent} /> |
| 62 | <CodeWithNotes {...page} /> |
| 63 | </section> |
| 64 | ) |
| 65 | } |
| 66 | |
| 67 | export function Sponsors() { |
| 68 | return <AllSponsors className="-mx-12 scale-[0.88]" /> |
nothing calls this directly
no test coverage detected
searching dependent graphs…