/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; import {useThemeConfig} from '@docusaurus/theme-common'; import FooterLinks from '@theme/Footer/Links'; import FooterLogo from '@theme/Footer/Logo'; import FooterCopyright from '@theme/Footer/Copyright'; import FooterLayout from '@theme/Footer/Layout'; function Footer() { const {footer} = useThemeConfig(); if (!footer) { return null; } const {copyright, links, logo, style} = footer; return ( 0 && } logo={logo && } copyright={copyright && } /> ); } export default React.memo(Footer);