mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 15:19:58 +08:00
18 lines
459 B
TypeScript
18 lines
459 B
TypeScript
|
import React from 'react';
|
||
|
import { Anchor } from 'antd';
|
||
|
|
||
|
const { Link } = Anchor;
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Anchor>
|
||
|
<Link href="#components-anchor-demo-basic" title="Basic demo" />
|
||
|
<Link href="#components-anchor-demo-static" title="Static demo" />
|
||
|
<Link href="#API" title="API">
|
||
|
<Link href="#Anchor-Props" title="Anchor Props" />
|
||
|
<Link href="#Link-Props" title="Link Props" />
|
||
|
</Link>
|
||
|
</Anchor>
|
||
|
);
|
||
|
|
||
|
export default App;
|