| 3 | import { useState, useEffect, useCallback } from 'react'; |
| 4 | |
| 5 | interface Todo { |
| 6 | id: number; |
| 7 | text: string; |
| 8 | timestamp: Date; |
| 9 | } |
| 10 | |
| 11 | function TodoInput({ |
| 12 | value: input, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…