()
| 9 | }; |
| 10 | const QueuedMessageContext = React.createContext<QueuedMessageContextValue | undefined>(undefined); |
| 11 | export function useQueuedMessage() { |
| 12 | return React.useContext(QueuedMessageContext); |
| 13 | } |
| 14 | const PADDING_X = 2; |
| 15 | type Props = { |
| 16 | isFirst: boolean; |
no outgoing calls
no test coverage detected