| 3 | import type { Duration } from "@/types" |
| 4 | |
| 5 | interface Props { |
| 6 | value: Duration |
| 7 | onChange: (value: Duration) => void |
| 8 | } |
| 9 | |
| 10 | export default function Filter({ value, onChange }: Props) { |
| 11 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected