({ className, content, footer, onDrop }: Props)
| 10 | } |
| 11 | |
| 12 | function ChatLayout({ className, content, footer, onDrop }: Props) { |
| 13 | return ( |
| 14 | <div className={classNames(styles.layout, className)} onDrop={onDrop}> |
| 15 | {content} |
| 16 | <div id="chat-layout-footer" className={styles.footer}> |
| 17 | {footer} |
| 18 | </div> |
| 19 | </div> |
| 20 | ); |
| 21 | } |
| 22 | |
| 23 | export default ChatLayout; |
nothing calls this directly
no outgoing calls
no test coverage detected