import * as React from 'react'; import { navigation } from '../../constants/navigation'; import { Logo } from '../Images'; import Link from 'next/link'; import { Extension } from '../../constants/extension'; import { useRouter } from 'next/router'; import { Searchbox } from '../Page/Searchbox'; import { isProduction } from '../../helpers/isProduction'; export interface INavigationProps {} export const Navigation: React.FunctionComponent = (props: React.PropsWithChildren) => { const router = useRouter(); return ( <> { !isProduction() ? (
You are currently viewing the BETA version of Front Matter documentation. Click on the banner to go to the main release documentation.
) : null } ); };