({ children }: PreProps)
| 45 | } |
| 46 | |
| 47 | function Pre({ children }: PreProps) { |
| 48 | return ( |
| 49 | <pre className="overflow-x-auto rounded-md bg-surface-900 border border-surface-700 p-3 my-2 text-xs font-mono leading-relaxed"> |
| 50 | {children} |
| 51 | </pre> |
| 52 | ); |
| 53 | } |
| 54 | |
| 55 | // ─── Component ──────────────────────────────────────────────────────────────── |
| 56 |
nothing calls this directly
no outgoing calls
no test coverage detected