You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
460 B

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')!,
},
);