* fix(ui) - insight item name * feat(ui) - path analysis - wip * feat(ui) - path analysis - wip * feat(ui) - path analysis * feat(ui) - user retention * feat(ui): path analysis - filters and graph * change(ui): plugins text and icon * feat(ui): path analysis - filters and graph * feat(ui): path analysis - filters and graph * feat(ui): path analysis * feat(ui): path analysis - start point filters * feat(ui): path analysis
31 lines
762 B
TypeScript
31 lines
762 B
TypeScript
import React from 'react';
|
|
// import Select from 'Shared/Select';
|
|
import { Dropdown, MenuProps, Select, Space } from 'antd';
|
|
import { DownOutlined, SmileOutlined } from '@ant-design/icons';
|
|
|
|
interface Props {
|
|
payload: any;
|
|
}
|
|
|
|
function NodeDropdown(props: Props) {
|
|
const items: MenuProps['items'] = [
|
|
{
|
|
key: '1',
|
|
label: (
|
|
<a target='_blank' rel='noopener noreferrer' href='https://www.antgroup.com'>
|
|
1st menu item
|
|
</a>
|
|
)
|
|
}
|
|
];
|
|
return (
|
|
<Select style={{ width: 120 }} placeholder='Slect Event' dropdownStyle={{
|
|
border: 'none'
|
|
}}>
|
|
<Select.Option value='jack'>Jack</Select.Option>
|
|
<Select.Option value='lucy'>Lucy</Select.Option>
|
|
</Select>
|
|
);
|
|
}
|
|
|
|
export default NodeDropdown;
|