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

Function Columns

apps/web/content/blog/remotion/code.tsx:21–32  ·  view source on GitHub ↗
(props: unknown)

Source from the content-addressed store, hash-verified

19}
20
21export function Columns(props: unknown) {
22 const { left, right } = parseProps(
23 props,
24 Block.extend({ left: Block, right: Block }),
25 )
26 return (
27 <div className="flex gap-2 -mx-8">
28 <div className="flex-1 min-w-0">{left.children}</div>
29 <div className="flex-1 min-w-0">{right.children}</div>
30 </div>
31 )
32}
33import { z } from "zod"
34import {
35 Selection,

Callers

nothing calls this directly

Calls 1

parsePropsFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…