mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
42 lines
902 B
TypeScript
42 lines
902 B
TypeScript
|
import React, { useRef, useState } from 'react';
|
||
|
import { Button, Tour } from 'antd';
|
||
|
import type { TourProps } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => {
|
||
|
const ref = useRef(null);
|
||
|
|
||
|
const [open, setOpen] = useState<boolean>(false);
|
||
|
|
||
|
const steps: TourProps['steps'] = [
|
||
|
{
|
||
|
title: 'Center',
|
||
|
description: 'Displayed in the center of screen.',
|
||
|
target: null,
|
||
|
},
|
||
|
{
|
||
|
title: 'Right',
|
||
|
description: 'On the right of target.',
|
||
|
placement: 'right',
|
||
|
target: () => ref.current,
|
||
|
},
|
||
|
{
|
||
|
title: 'Top',
|
||
|
description: 'On the top of target.',
|
||
|
placement: 'top',
|
||
|
target: () => ref.current,
|
||
|
},
|
||
|
];
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<Button type="primary" onClick={() => setOpen(true)} ref={ref}>
|
||
|
Begin Tour
|
||
|
</Button>
|
||
|
|
||
|
<Tour open={open} onClose={() => setOpen(false)} steps={steps} />
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|