* ui: fix performance bottlenecks, split data sources in devtools panes * ui: move xray warn * Player ux improvements (#2834) * Player UX improvements. DevTools (Including multi-tab) Actions panel (User events, Click maps, Tag Elements) * ui: remove unused imports, remove str templ classnames --------- Co-authored-by: Sudheer Salavadi <connect.uxmaster@gmail.com> --------- Co-authored-by: Sudheer Salavadi <connect.uxmaster@gmail.com>
19 lines
424 B
TypeScript
19 lines
424 B
TypeScript
import React from 'react';
|
|
import { MenuProps, Select } from 'antd';
|
|
|
|
interface Props {
|
|
payload: any;
|
|
}
|
|
|
|
function NodeDropdown(props: Props) {
|
|
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;
|