import React from 'react';
import { Menu, Layout } from 'antd';
import { Link, useLocation } from 'react-router-dom';
import './index.css';
const Header: React.FC = () => {
const location = useLocation();
const currentPath = location.pathname;
const items = [
{
key: '/register',
label: 账号注册,
},
{
key: '/activate',
label: 账号激活,
},
{
key: '/history',
label: 历史账号,
},
];
return (
PikPak 自动邀请
);
};
export default Header;