Skip to content

Commit 55bff4e

Browse files
committed
formatting
1 parent 8376673 commit 55bff4e

1 file changed

Lines changed: 8 additions & 9 deletions

File tree

src/theme/Footer/index.tsx

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
import React from 'react';
2-
import {useThemeConfig} from '@docusaurus/theme-common';
3-
import FooterLayout from '@theme/Footer/Layout';
4-
import FooterCopyright from '@theme/Footer/Copyright';
5-
import FooterLogo from '@theme/Footer/Logo';
6-
import FooterLinks from '@theme/Footer/Links';
7-
import type {Props} from '@theme/Footer';
1+
import React, { JSX } from "react";
2+
import { useThemeConfig } from "@docusaurus/theme-common";
3+
import FooterLayout from "@theme/Footer/Layout";
4+
import FooterCopyright from "@theme/Footer/Copyright";
5+
import FooterLogo from "@theme/Footer/Logo";
6+
import FooterLinks from "@theme/Footer/Links";
87

98
function Footer(): JSX.Element | null {
10-
const {footer} = useThemeConfig();
9+
const { footer } = useThemeConfig();
1110
if (!footer) {
1211
return null;
1312
}
14-
const {copyright, links, logo, style} = footer;
13+
const { copyright, links, logo, style } = footer;
1514

1615
return (
1716
<FooterLayout

0 commit comments

Comments
 (0)