import { FunctionComponent } from "react";
import { DocsError } from "./DocsError";
import { usePackageState } from "./PackageState";
import { ExternalLink } from "../../components/ExternalLink";
import { CONSTRUCT_HUB_REPO_URL } from "../../constants/links";
export const PackageDocsError: FunctionComponent = () => {
const { language } = usePackageState();
const issueLink = (
issue
);
return (
Documentation in {language} is still not ready for this package. Come back
soon. If this issue persists, please let us know by creating an{" "}
{issueLink}.
);
};