| 93 | `; |
| 94 | |
| 95 | interface BeautifulProps { |
| 96 | title: string; |
| 97 | description?: React.ReactNode; |
| 98 | } |
| 99 | |
| 100 | const BeautifulWrapper: React.FC<BeautifulProps> = p => { |
| 101 | const { title, children, description } = p; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…