()
| 4 | import { Button } from "@/components/ui/button"; |
| 5 | |
| 6 | export const BackButton = () => { |
| 7 | const router = useRouter(); |
| 8 | |
| 9 | return ( |
| 10 | <Button |
| 11 | variant="outline" |
| 12 | onClick={() => router.back()} |
| 13 | className="not-prose" |
| 14 | > |
| 15 | Go Back |
| 16 | </Button> |
| 17 | ); |
| 18 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected