| 26 | import { HotKeysType } from "../types/hotKeys"; |
| 27 | |
| 28 | interface GraphCardProps { |
| 29 | userID: string; |
| 30 | graph: PersonalGraph; |
| 31 | } |
| 32 | |
| 33 | const GraphCard: FC<GraphCardProps> = ({ userID, graph }) => { |
| 34 | const navigate = useNavigate(); |
nothing calls this directly
no outgoing calls
no test coverage detected