---
category: 2
title: 基本
title_en: Basic
---

最简单的用法。
The simplest usage.

```jsx
import { Anchor } from 'parkball';

const { Link } = Anchor;

ReactDOM.render(
  <Anchor>
    <Link href="#components-anchor-demo-basic" title="Basic demo" />
    <Link href="#components-anchor-demo-fixed" title="Fixed demo" />
    <Link href="#API" title="API">
      <Link href="#Anchor-Props" title="Anchor Props" />
      <Link href="#Link-Props" title="Link Props" />
    </Link>
  </Anchor>,
  mountNode);
```

<style>
.code-box-demo .ant-affix {
  z-index: 11;
}
</style>
