(props: unknown)
| 31 | const stickerHeight = 640 |
| 32 | |
| 33 | export function Scrolly(props: unknown) { |
| 34 | const p = parseProps(props, Schema) |
| 35 | return ( |
| 36 | <> |
| 37 | <Lean {...p} /> |
| 38 | <Rich {...p} /> |
| 39 | </> |
| 40 | ) |
| 41 | } |
| 42 | |
| 43 | type ContentProps = z.infer<typeof Schema> |
| 44 | function Lean(props: ContentProps) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…