import { useLayoutEffect } from "preact/hooks"; import { getRecommendedDownload } from "../download-helper"; interface DownloadButtonProps { big?: boolean; } const { architecture, platform, url } = getRecommendedDownload(); export default function DownloadButton({ big }: DownloadButtonProps) { return ( Download now{" "} {platform} {architecture} ) }