| 14 | import { useArtifact } from '@/hooks/use-artifact'; |
| 15 | |
| 16 | interface VersionFooterProps { |
| 17 | handleVersionChange: (type: 'next' | 'prev' | 'toggle' | 'latest') => void; |
| 18 | documents: Array<Document> | undefined; |
| 19 | currentVersionIndex: number; |
| 20 | } |
| 21 | |
| 22 | export const VersionFooter = ({ |
| 23 | handleVersionChange, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…