mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 07:39:10 +08:00
26 lines
460 B
TypeScript
26 lines
460 B
TypeScript
|
import * as React from 'react';
|
||
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
||
|
|
||
|
demoTest('anchor', {
|
||
|
testRootProps: false,
|
||
|
});
|
||
|
|
||
|
rootPropsTest(
|
||
|
'anchor',
|
||
|
(Anchor, props) => (
|
||
|
<Anchor
|
||
|
{...props}
|
||
|
items={[
|
||
|
{
|
||
|
key: 'part-1',
|
||
|
href: '#part-1',
|
||
|
title: 'Part 1',
|
||
|
},
|
||
|
]}
|
||
|
/>
|
||
|
),
|
||
|
{
|
||
|
findRootElements: () => document.querySelector('.ant-anchor-wrapper')!,
|
||
|
},
|
||
|
);
|