Commit bf53c3cd authored by Chunchi Che's avatar Chunchi Che

add SelectManager

parent 0f87a14f
Pipeline #26992 passed with stages
in 9 minutes and 21 seconds
...@@ -152,6 +152,7 @@ export const Menu = () => { ...@@ -152,6 +152,7 @@ export const Menu = () => {
return ( return (
<div className={styles["menu-container"]}> <div className={styles["menu-container"]}>
<SelectManager />
<DropdownWithTitle <DropdownWithTitle
title="请选择要进入的阶段" title="请选择要进入的阶段"
menu={{ items: phaseSwitchItems }} menu={{ items: phaseSwitchItems }}
...@@ -243,3 +244,12 @@ const ChainIcon: React.FC<{ chainSetting: ChainSetting }> = ({ ...@@ -243,3 +244,12 @@ const ChainIcon: React.FC<{ chainSetting: ChainSetting }> = ({
return <IconFont type="icon-chain-broken" />; return <IconFont type="icon-chain-broken" />;
} }
}; };
const SelectManager: React.FC = () => {
return (
<>
<Button>完成选择</Button>
<Button style={{ color: "red" }}>取消选择</Button>
</>
);
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment