({error, reset}: Props)
| 7 | } |
| 8 | |
| 9 | export default function Error({error, reset}: Props) { |
| 10 | useEffect(() => { |
| 11 | console.error(error) |
| 12 | }, [error]) |
| 13 | |
| 14 | return <div>not found</div> |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected