mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
2cdf586291
* chore: fix lint * chore: fix lint * test: fix 16 * fix: lint
37 lines
862 B
TypeScript
37 lines
862 B
TypeScript
import React from 'react';
|
|
import { Anchor, Col, Row } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<Row>
|
|
<Col span={16}>
|
|
<div id="part-1" style={{ height: '100vh', background: 'rgba(255,0,0,0.02)' }} />
|
|
<div id="part-2" style={{ height: '100vh', background: 'rgba(0,255,0,0.02)' }} />
|
|
<div id="part-3" style={{ height: '100vh', background: 'rgba(0,0,255,0.02)' }} />
|
|
</Col>
|
|
<Col span={8}>
|
|
<Anchor
|
|
replace
|
|
items={[
|
|
{
|
|
key: 'part-1',
|
|
href: '#part-1',
|
|
title: 'Part 1',
|
|
},
|
|
{
|
|
key: 'part-2',
|
|
href: '#part-2',
|
|
title: 'Part 2',
|
|
},
|
|
{
|
|
key: 'part-3',
|
|
href: '#part-3',
|
|
title: 'Part 3',
|
|
},
|
|
]}
|
|
/>
|
|
</Col>
|
|
</Row>
|
|
);
|
|
|
|
export default App;
|