import * as React from "react"; import { Component } from "react"; import { Layout, Typography, Input, Menu, Button, Dropdown } from "antd"; import { useTranslation } from "react-i18next"; export const Footer: React.FC = () => { const {t} = useTranslation(); return <> {t('footer.detail')} ; };