MCPcopy
hub / github.com/code-hike/codehike / FineGrained

Function FineGrained

apps/web/content/blog/v1.tsx:48–65  ·  view source on GitHub ↗
(props: unknown)

Source from the content-addressed store, hash-verified

46}
47
48export 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
67export function Sponsors() {
68 return <AllSponsors className="-mx-12 scale-[0.88]" />

Callers

nothing calls this directly

Calls 2

parsePropsFunction · 0.90
highlightFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…