| 6 | import packageInfo from 'package.json'; |
| 7 | |
| 8 | interface Props { |
| 9 | title?: string; |
| 10 | step: number; |
| 11 | } |
| 12 | |
| 13 | const ReportStep = ({ title: stepTitle, step }: Props) => { |
| 14 | const { query } = useRouter(); |
nothing calls this directly
no outgoing calls
no test coverage detected