| 22 | import {Button} from './Button'; |
| 23 | |
| 24 | interface PageHeadingProps { |
| 25 | title: string; |
| 26 | version?: 'experimental' | 'canary' | 'rc'; |
| 27 | experimental?: boolean; |
| 28 | status?: string; |
| 29 | description?: string; |
| 30 | tags?: RouteTag[]; |
| 31 | breadcrumbs: RouteItem[]; |
| 32 | } |
| 33 | |
| 34 | function CopyAsMarkdownButton() { |
| 35 | const {asPath} = useRouter(); |
nothing calls this directly
no outgoing calls
no test coverage detected