inesa/src/components/Yidian/SelectPride.tsx

17 lines
345 B
TypeScript

import { Select } from "antd";
import { FC } from "react";
export const SelectPride: FC<{}> = () => {
return (
<Select
defaultValue="jack"
style={{ width: 120 }}
disabled={false}
options={[
{ value: "jack", label: "优秀项目" },
{ value: "lucy", label: "标杆项目" },
]}
/>
);
};