Footer.tsx 447 Bytes
Newer Older
1 2 3 4
import * as React from "react";
import { Component } from "react";
import { Layout, Typography, Input, Menu, Button, Dropdown } from "antd";

mayi's avatar
mayi committed
5
import { useTranslation } from "react-i18next";
6 7 8


export const Footer: React.FC = () => {
mayi's avatar
mayi committed
9
const {t} = useTranslation();
10 11 12
  return <>
   <Layout.Footer>
        <Typography.Title level={3} style={{textAlign: 'center'}}>
mayi's avatar
mayi committed
13
        {t('footer.detail')}
14 15 16
        </Typography.Title>
      </Layout.Footer></>;
};