| 3 | import React, {useLayoutEffect, useRef, useEffect, useCallback, useMemo, useState} from "react"; |
| 4 | |
| 5 | interface Message { |
| 6 | role: string; |
| 7 | content: string; |
| 8 | id: number; |
| 9 | } |
| 10 | |
| 11 | // Draft messages are used to optmistically update the UI |
| 12 | // before the server responds. |
nothing calls this directly
no outgoing calls
no test coverage detected