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.
41 lines
902 B
41 lines
902 B
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;
|
|
|