import React from 'react'; import Content from '@theme-original/DocItem/Content'; import type ContentType from '@theme/DocItem/Content'; import type { WrapperProps } from '@docusaurus/types'; import Link from '@docusaurus/Link'; import config from '@generated/docusaurus.config'; type Props = WrapperProps; function CurrentVersionLink(props) { return Current Version } function NextBanner(): JSX.Element | null { // const isNext = process.env.GITHUB_REF === 'refs/heads/next' if (config.customFields?.isNext) { return (

The documentation here is for an unreleased version of Recyclarr.

Visit the documentation site for the instead.
) } return null; } export default function ContentWrapper(props: Props): JSX.Element { return ( <> ); }