Skip to content
This repository has been archived by the owner on Dec 10, 2023. It is now read-only.

Commit

Permalink
added seo
Browse files Browse the repository at this point in the history
  • Loading branch information
Manas2403 committed Jun 17, 2023
1 parent 3fbb75a commit 36f288e
Show file tree
Hide file tree
Showing 19 changed files with 1,033 additions and 928 deletions.
103 changes: 52 additions & 51 deletions components/elements/CustomParameterInput/index.js
Original file line number Diff line number Diff line change
@@ -1,54 +1,55 @@
import React from 'react';
import { Dropdown, Input, Button, Space } from 'antd';
import { AiOutlineDown } from 'react-icons/ai';
import React from "react";
import { Dropdown, Input, Button, Space } from "antd";
import { AiOutlineDown } from "react-icons/ai";

export default function CustomParameter() {
const items = [
{
label: '1st menu item',
key: '1',
icon: '',
},
{
label: '2nd menu item',
key: '2',
icon: '',
},
{
label: '3rd menu item',
key: '3',
icon: '',
},
{
label: '4rd menu item',
key: '4',
icon: '',
},
];
const menuProps = {
items,
onClick: handleMenuClick,
};
const handleMenuClick = (e) => {
console.log('click', e);
};
return (
<>
<div className="flex flex-row justify-around gap-4 items-center">
<div>
<Dropdown menu={menuProps}>
<Button className="rounded-lg" size="large">
<Space>
Custom Option Type
<AiOutlineDown />
</Space>
</Button>
</Dropdown>
</div>
<div className="w-full">
<Input placeholder="Custom Option Value" className="rounded-lg " />
</div>
</div>
</>
);
const items = [
{
label: "1st menu item",
key: "1",
icon: "",
},
{
label: "2nd menu item",
key: "2",
icon: "",
},
{
label: "3rd menu item",
key: "3",
icon: "",
},
{
label: "4rd menu item",
key: "4",
icon: "",
},
];
const menuProps = {
items,
onClick: handleMenuClick,
};
const handleMenuClick = (e) => {};
return (
<>
<div className="flex flex-row justify-around gap-4 items-center">
<div>
<Dropdown menu={menuProps}>
<Button className="rounded-lg" size="large">
<Space>
Custom Option Type
<AiOutlineDown />
</Space>
</Button>
</Dropdown>
</div>
<div className="w-full">
<Input
placeholder="Custom Option Value"
className="rounded-lg "
/>
</div>
</div>
</>
);
}
Loading

0 comments on commit 36f288e

Please sign in to comment.