MCPcopy Index your code
hub / github.com/claude-code-best/claude-code / MemoryFileRow

Function MemoryFileRow

src/components/messages/SystemTextMessage.tsx:373–384  ·  view source on GitHub ↗
({ path }: { path: string })

Source from the content-addressed store, hash-verified

371}
372
373function MemoryFileRow({ path }: { path: string }): React.ReactNode {
374 const [hover, setHover] = useState(false);
375 return (
376 <MessageResponse>
377 <Box onClick={() => void openPath(path)} onMouseEnter={() => setHover(true)} onMouseLeave={() => setHover(false)}>
378 <Text dimColor={!hover} underline={hover}>
379 <FilePathLink filePath={path}>{basename(path)}</FilePathLink>
380 </Text>
381 </Box>
382 </MessageResponse>
383 );
384}
385
386function ThinkingMessage({
387 message,

Callers

nothing calls this directly

Calls 1

openPathFunction · 0.85

Tested by

no test coverage detected