({ children }: PropsWithChildren)
| 39 | ); |
| 40 | |
| 41 | const Description = ({ children }: PropsWithChildren) => ( |
| 42 | <Dialog.Description className={styles.description}> |
| 43 | {children} |
| 44 | </Dialog.Description> |
| 45 | ); |
| 46 | |
| 47 | const Content = ({ children }: PropsWithChildren) => ( |
| 48 | <main className={styles.wrapper}>{children}</main> |
nothing calls this directly
no outgoing calls
no test coverage detected