| 3 | import { useI18nUrl } from './utils'; |
| 4 | |
| 5 | interface StepProps { |
| 6 | href: string; |
| 7 | title: string; |
| 8 | description: string; |
| 9 | } |
| 10 | const Step = ({ href, title, description }: StepProps) => { |
| 11 | const tUrl = useI18nUrl(); |
| 12 | const isExternal = href.startsWith('http'); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…