MCPcopy Create free account
hub / github.com/composify-js/composify / BlockGroup

Function BlockGroup

packages/react/src/editor/BlockGroup/BlockGroup.tsx:12–23  ·  view source on GitHub ↗
({ category, blocks })

Source from the content-addressed store, hash-verified

10};
11
12export const BlockGroup: FC<Props> = ({ category, blocks }) => (
13 <div className={styles.container}>
14 <Text size="xs" weight="medium" color="on-surface" className={styles.category}>
15 {category}
16 </Text>
17 <div className={styles.grid}>
18 {blocks.map((block) => (
19 <BlockItem key={block.name} block={block} />
20 ))}
21 </div>
22 </div>
23);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected