mango-web/components/Navigation.tsx

28 lines
564 B
TypeScript
Raw Normal View History

import { Image, Menu, Spacer } from 'antd';
import Logo from './Logo';
export default function Navigation() {
return (
<>
<Menu mode="horizontal" selectedKeys={[]}>
<Logo />
<Menu.Item key="trade">
<a href="/trade">
Trade
</a>
</Menu.Item>
<Menu.Item key="stats">
<a href="/stats">
Stats
</a>
</Menu.Item>
<Menu.Item key="help">
<a href="/help">
Help
</a>
</Menu.Item>
</Menu>
</>
);
};