(props: IterableInboxProps)
| 7 | import { iterableInboxCustomization } from './Inbox.constants'; |
| 8 | |
| 9 | export const Inbox = (props: IterableInboxProps) => { |
| 10 | const { returnToInboxTrigger } = useIterableApp(); |
| 11 | |
| 12 | return ( |
| 13 | <IterableInbox |
| 14 | returnToInboxTrigger={returnToInboxTrigger} |
| 15 | customizations={iterableInboxCustomization} |
| 16 | {...props} |
| 17 | /> |
| 18 | ); |
| 19 | }; |
| 20 | |
| 21 | export default Inbox; |
nothing calls this directly
no test coverage detected
searching dependent graphs…