| 5 | import { useState } from 'react'; |
| 6 | |
| 7 | interface CodeBlockProps { |
| 8 | children: string; |
| 9 | language?: string; |
| 10 | } |
| 11 | |
| 12 | // CodePen Demo 组件 |
| 13 | function CodePenDemo({ html, css, js }: { html: string; css: string; js: string }) { |
nothing calls this directly
no outgoing calls
no test coverage detected