({ children }: { children: React.ReactNode })
| 58 | } |
| 59 | |
| 60 | export function Row({ children }: { children: React.ReactNode }) { |
| 61 | return ( |
| 62 | <div className="grid grid-cols-1 items-start gap-x-16 gap-y-10 xl:max-w-none xl:grid-cols-2"> |
| 63 | {children} |
| 64 | </div> |
| 65 | ) |
| 66 | } |
| 67 | |
| 68 | export function Col({ |
| 69 | children, |
nothing calls this directly
no outgoing calls
no test coverage detected