Files
Shahed Nasser 4d632e7a5d docs: added tests for components in api-reference project (#14428)
* add tests (WIP)

* added test for h2

* finished adding tests

* fixes

* fixes

* fixes
2026-01-05 10:56:56 +02:00

26 lines
491 B
TypeScript

"use client"
import React from "react"
import { Button } from "docs-ui"
import { useArea } from "@/providers/area"
import Link from "next/link"
const DownloadFull = () => {
const { area } = useArea()
return (
<Button variant="secondary">
<Link
href={`/download/${area}`}
download
target="_blank"
data-testid="download-full-link"
>
Download OpenApi Specs Collection
</Link>
</Button>
)
}
export default DownloadFull